:root {
  --app-sidebar-width: 64px;
}

.invoice-box {
  background-color: #eeeffe;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  margin: 20px auto;
}

#dashboard-monthly_report {
    table tr > td:last-child {
        text-align: right;
    }
}

/* Custom classes that don't exist in the original bootstrap */
.app-navbar {
  height: 60px;
}

.app-sidebar {
  background-color: var(--color-brand-sand);
  height: 100vh;
  width: var(--app-sidebar-width);
  position: fixed;
  left: 0;
}

@media (min-width: 768px) {
  .content-column-with-app-sidebar {
    margin-left: var(--app-sidebar-width);
  }
}

.chat-main-row {
  height: calc(100dvh - 60px);
}

.settings-sidebar {
  border-right: 1px solid var(--color-brand-dark-sand);
}

.chat-sidebar {
  border-right: 1px solid var(--color-brand-dark-sand);
}

.guest-details {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--color-brand-dark-sand);
}

.chat-controls {
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--color-brand-dark-sand);
}

/* chat history */
.chat-bubble {
    position: relative;
    max-width: 80%;
    padding: 1em;
    box-shadow: 0px 1.5px 0px 0px rgba(0, 0, 0, 0.2);
}

.chat-bubble-right {
    border-radius: 10px 0 10px 10px;
}

.chat-bubble-left {
    border-radius: 0 10px 10px 10px;
}


.chat-bubble-right::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px; /* Adjust position of the tail */
    width: 0;
    height: 0;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: #F8F9FA transparent transparent transparent;
}

.chat-bubble-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: -10px; /* Adjust position of the tail */
    width: 0;
    height: 0;
    border-width: 10px 0 0 10px;
    border-style: solid;
    border-color: #EEEFFF transparent transparent transparent;
}

.chat-bubble-bot {
    background-color: var(--color-brand-light-sand);
}

.chat-bubble-guest {
    background-color: #EEEFFF;
}

.chat-bubble-user {
    background-color: #D6E6DE;
}

.chat-bubble-user::after {
    border-color: #D6E6DE transparent transparent transparent;
}

.attachment {
    max-width: 50%;
}

.chat-bubble-button-press {
    background-color: #190041;
    border-radius: 10px;
    padding: 1em;
    box-shadow: 0px 1.5px 0px 0px rgba(0, 0, 0, 0.2);
}

.translation {
    padding: 0.5em;
    margin-top: 0.75em;
}

.show-translation {
    cursor: pointer;
}