/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.u-font-weight-bold {
  font-weight: bold; }

.u-font-size-bigger {
  font-size: bigger; }

.u-width-1rem {
  width: 1rem; }

.u-width-full {
  width: 100%; }

.u-height-full {
  height: 100%; }

.u-position-relative {
  position: relative; }

.u-display-flex {
  display: flex; }

.u-display-block {
  display: block; }

.u-display-inline-block {
  display: inline-block; }

.u-align-self-center {
  align-self: center; }

.u-full-w {
  width: 100%; }

.u-full-h {
  height: 100%; }

.u-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }

.u-clickable {
  cursor: pointer; }

.u-opacity-07 {
  opacity: 0.7; }

.u-margin-top {
  margin-top: 10px; }

.u-margin-top-big {
  margin-top: 20px; }

.u-margin-left {
  margin-left: 10px; }

.u-margin-left-big {
  margin-left: 20px; }

.u-margin-bottom {
  margin-bottom: 10px; }

.u-margin-bottom-big {
  margin-bottom: 20px; }

.u-margin-right {
  margin-right: 10px; }

.u-margin-right-big {
  margin-right: 20px; }

.u-no-margin {
  margin: none; }

.header {
  font-size: 28px;
  font-weight: normal; }

.header-small {
  font-size: 18px;
  font-weight: normal; }

/** Responsive vars **/
/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
/* VARS/COLORS TO BE CHECKED */
/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.generic-popup__backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500; }
  .generic-popup__backdrop.generic-popup__backdrop--lightbox {
    background-color: rgba(0, 0, 0, 0.5); }

.generic-popup__container {
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: #fff;
  min-width: 35%; }

.generic-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: #fff;
  min-width: 35%;
  display: flex;
  flex-direction: column;
  border-radius: 8px; }
  .generic-popup--big {
    width: 80%;
    height: 80%; }
  .generic-popup--medium {
    width: 50%;
    height: 50%; }
  .generic-popup--small {
    max-width: 20%; }
  .generic-popup--standard {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto; }
  .generic-popup__header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
    padding: 32px 20px; }
    .generic-popup__header.theme-light {
      border-color: #EDE7EC; }
    .theme-light .generic-popup__header {
      border-color: #EDE7EC; }
    .generic-popup__header.theme-light {
      color: #4F1140; }
    .theme-light .generic-popup__header {
      color: #4F1140; }
    .generic-popup__header button:nth-last-child(1).theme-light {
      color: #4F1140; }
    .theme-light .generic-popup__header button:nth-last-child(1) {
      color: #4F1140; }
  .generic-popup__title-container {
    display: flex;
    gap: 10px; }
  .generic-popup__title {
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase; }
  .generic-popup__footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-top: 1px solid;
    border-radius: 0pt 0pt 8px 8px; }
    .generic-popup__footer.theme-light {
      border-color: #EDE7EC; }
    .theme-light .generic-popup__footer {
      border-color: #EDE7EC; }
    .generic-popup__footer.theme-light {
      background-color: #EDE7EC; }
    .theme-light .generic-popup__footer {
      background-color: #EDE7EC; }
    .generic-popup__footer:has(> :only-child) {
      justify-content: flex-end; }
  .generic-popup__footer-button-group {
    display: flex;
    gap: 8px; }
  .generic-popup__back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid;
    border-color: transparent;
    width: max-content; }
    .generic-popup__back-btn.theme-light {
      color: #C9C9CA; }
    .theme-light .generic-popup__back-btn {
      color: #C9C9CA; }
    .generic-popup__back-btn:hover.theme-light {
      border-color: #C9C9CA; }
    .theme-light .generic-popup__back-btn:hover {
      border-color: #C9C9CA; }
  .generic-popup__body {
    padding: 10px; }
    .generic-popup__body--with-back-btn {
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      grid-template-columns: auto; }
  .generic-popup__text-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px; }
  .generic-popup__text-main {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px; }
  .generic-popup__text-secondary {
    font-size: 15px; }
    .generic-popup__text-secondary.theme-light {
      color: #4C4E52; }
    .theme-light .generic-popup__text-secondary {
      color: #4C4E52; }

.generic-error-popup {
  position: relative;
  margin: 20px 10px 0 0;
  min-height: 100px; }
  .generic-error-popup__message {
    display: block;
    font-size: 20px;
    margin: 10px 0; }
  .generic-error-popup__desc {
    display: block;
    font-size: 14px;
    margin: 10px 0 20px 0; }
  .generic-error-popup img {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 16px;
    cursor: pointer; }

.generic-confirmation-popup {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 5px; }
  .generic-confirmation-popup__title {
    font-weight: 400;
    font-size: 25px;
    margin: 0; }
  .generic-confirmation-popup__body {
    font-size: 16px;
    margin-bottom: 10px; }
  .generic-confirmation-popup__buttons {
    display: flex;
    gap: 10px; }
    .generic-confirmation-popup__buttons > * {
      padding: 5px 20px; }
  .generic-confirmation-popup__accept-btn {
    font-size: 18px; }

/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.loading-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  gap: 20px; }
  .loading-popup__backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500; }
    .loading-popup__backdrop--lightbox {
      background-color: rgba(0, 0, 0, 0.5); }
  .loading-popup__spinner {
    height: 60px;
    width: 60px; }

.main-container {
  height: 100%;
  max-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: auto 4fr;
  background-color: #FCFDFE; }

body {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  background-color: #F7F7F8; }

.chat-screen-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.chat-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
  height: 60px; }
  .chat-screen-header .context-selector {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    font-weight: 500;
    color: #202124;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer; }
    .chat-screen-header .context-selector:hover {
      background-color: #efeff1; }
    .chat-screen-header .context-selector .chevron-down {
      margin-left: 8px;
      width: 16px;
      height: 16px;
      stroke: #5f6368; }
  .chat-screen-header .user-profile {
    display: flex;
    align-items: center;
    color: #202124; }
    .chat-screen-header .user-profile .user-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: #BDBDBD;
      margin-right: 10px;
      display: inline-block; }
    .chat-screen-header .user-profile .user-name {
      font-size: 0.9em;
      font-weight: 500; }

.chat-conversation-area {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: #F7F7F8; }
  .chat-conversation-area::-webkit-scrollbar {
    width: 8px; }
  .chat-conversation-area::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 4px; }
  .chat-conversation-area::-webkit-scrollbar-track {
    background: #F7F7F8; }

.message-wrapper {
  display: flex;
  margin-bottom: 12px; }
  .message-wrapper.user {
    justify-content: flex-end; }
    .message-wrapper.user .message-bubble {
      background-color: #F1F3F4;
      color: #202124;
      border-radius: 18px 18px 4px 18px; }
  .message-wrapper.bot {
    justify-content: flex-start; }
    .message-wrapper.bot .message-bubble {
      background-color: #FFFFFF;
      color: #202124;
      border: 1px solid #E0E0E0;
      border-radius: 4px 18px 18px 18px; }

.message-bubble {
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95em;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
  .message-bubble p {
    margin-top: 0;
    margin-bottom: 0.8em; }
    .message-bubble p:last-child {
      margin-bottom: 0; }
  .message-bubble strong {
    font-weight: 600; }
  .message-bubble ol.racket-list, .message-bubble ul.sources-list {
    padding-left: 20px;
    margin-top: 0.5em;
    margin-bottom: 0.8em; }
    .message-bubble ol.racket-list li, .message-bubble ul.sources-list li {
      margin-bottom: 0.4em; }
  .message-bubble .sources-section {
    margin-top: 1em; }
    .message-bubble .sources-section .sources-title {
      font-size: 0.9em;
      font-weight: 500;
      color: #5f6368;
      margin-bottom: 0.4em; }
    .message-bubble .sources-section ul.sources-list {
      font-size: 0.9em;
      list-style-type: disc; }
      .message-bubble .sources-section ul.sources-list li a {
        color: #1a0dab;
        text-decoration: none; }
        .message-bubble .sources-section ul.sources-list li a:hover {
          text-decoration: underline; }
  .message-bubble .reference-note {
    font-size: 0.85em;
    color: #70757a;
    margin-top: 1em; }

.chat-input-bar {
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-top: 1px solid #E0E0E0;
  min-height: 60px;
  display: flex;
  align-items: center; }
  .chat-input-bar .input-area-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #DADCE0;
    border-radius: 24px;
    padding: 4px 6px 4px 15px; }
    .chat-input-bar .input-area-wrapper:focus-within {
      border-color: #1a73e8; }
  .chat-input-bar .message-input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 8px 0;
    font-size: 0.95em;
    color: #202124;
    background-color: transparent;
    resize: none;
    font-family: inherit;
    max-height: 100px;
    overflow-y: auto; }
    .chat-input-bar .message-input::placeholder {
      color: #5f6368;
      opacity: 1; }
  .chat-input-bar .input-icon-button {
    background-color: transparent;
    border: none;
    padding: 6px;
    margin-left: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368; }
    .chat-input-bar .input-icon-button svg {
      width: 20px;
      height: 20px; }
    .chat-input-bar .input-icon-button.attachment-button svg {
      stroke: #5f6368; }
    .chat-input-bar .input-icon-button.attachment-button:hover {
      color: #202124; }
      .chat-input-bar .input-icon-button.attachment-button:hover svg {
        stroke: #202124; }
    .chat-input-bar .input-icon-button.send-button {
      background-color: #3c4043;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      color: #FFFFFF; }
      .chat-input-bar .input-icon-button.send-button svg {
        fill: #FFFFFF; }
      .chat-input-bar .input-icon-button.send-button:hover {
        background-color: #484d50; }

.new-chat-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #FCFDFE;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center; }

.send-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px; }

.send-btn svg {
  width: 23px;
  height: 23px;
  stroke: #555;
  transition: stroke 0.2s ease; }

.send-btn:hover svg {
  stroke: #000; }

.chat-title {
  display: block;
  font-size: 60px;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.5px;
  margin-bottom: 10px; }

.existing-chat-container {
  display: grid;
  grid-template-rows: 50px 1fr auto;
  grid-gap: 10px;
  height: auto;
  max-height: 99vh; }
  .existing-chat-container--input-section {
    width: 100%;
    display: flex;
    justify-content: center; }

.chat-bubbles-container {
  display: flex;
  flex-direction: column;
  background: transparent;
  height: auto;
  padding: 0 16px;
  overflow-y: auto; }

.message-bubble {
  max-width: 65%;
  padding: 10px 14px;
  border-radius: 12px;
  margin: 6px 0;
  white-space: pre-wrap;
  word-wrap: break-word; }

.user-message {
  align-self: flex-end;
  background: #dcf8c6;
  color: #222; }

.assistant-message {
  position: relative;
  align-self: flex-start;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding-top: 35px; }
  .assistant-message__sources {
    border-top: 1px solid #ddd;
    margin-top: 8px;
    padding-top: 6px;
    font-size: 0.9em;
    color: #333; }
    .assistant-message__sources ul {
      margin: 4px 0 0 16px;
      padding: 0;
      list-style-type: disc; }
    .assistant-message__sources li {
      margin-bottom: 2px; }

.feedback-buttons-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px; }

.feedback-button {
  cursor: pointer; }
  .feedback-button--positive:hover {
    color: green; }
  .feedback-button--negative:hover {
    color: red; }

.bucket-dropdown {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background-color: white;
  color: #333;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s; }
  .bucket-dropdown:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2); }
  .bucket-dropdown option {
    padding: 8px; }

.bucket-dropdown-container {
  display: inline-block;
  position: relative;
  width: 150px;
  padding: 10px;
  font-family: 'Inter', sans-serif; }

.chat-input-container {
  display: flex;
  align-items: center;
  width: 50%;
  gap: 8px;
  padding: 8px;
  background: #fff; }

.chat-textarea {
  flex: 1;
  resize: none;
  overflow-y: hidden;
  height: 36px;
  min-height: 36px;
  max-height: 150px;
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid #ccc;
  font-size: 14px;
  line-height: 20px;
  outline: none;
  box-sizing: border-box; }

.chat-textarea:focus {
  border-color: #999; }

.fixed-logo {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 150px;
  height: auto;
  z-index: 1000; }

.sidebar {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: #F6F7F8;
  height: 100%;
  max-height: 100vh;
  width: 400px; }
  .sidebar--collapsed {
    grid-template-rows: auto 1fr auto;
    width: 100px; }
  .sidebar__user-chats-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    overflow-y: auto;
    max-height: 100%; }
  .sidebar__user-chats-button {
    font-size: 16px;
    min-height: 25px;
    border: none;
    background: none;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    min-height: 40px; }
    .sidebar__user-chats-button:hover {
      background-color: #E8EAED; }
    .sidebar__user-chats-button--selected {
      border-color: #b0b5bd; }
  .sidebar__chat-button-container {
    display: flex;
    padding: 10px 20px;
    align-items: center; }
  .sidebar__settings-container {
    display: flex;
    flex-direction: column;
    padding: 10px 20px; }
  .sidebar__chat-button {
    background-color: grey;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    cursor: pointer; }
  .sidebar__collapse-button {
    color: grey;
    background-color: red;
    padding: 10px;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    cursor: pointer;
    margin-left: auto; }
  .sidebar__settings-button {
    font-size: 16px;
    border: none;
    background: none;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center; }
    .sidebar__settings-button svg {
      height: 25px; }
    .sidebar__settings-button:hover {
      background-color: #E8EAED; }
    .sidebar__settings-button--collapsed {
      justify-content: center; }
  .sidebar__delete-chat-button {
    display: none;
    background: none;
    border: none;
    color: #d00;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    margin-left: 10px; }
    .sidebar__delete-chat-button:hover {
      background: rgba(220, 0, 0, 0.1); }
  .sidebar__user-chats-button-wrapper {
    position: relative;
    display: flex;
    align-items: center; }
    .sidebar__user-chats-button-wrapper:hover .sidebar__delete-chat-button {
      display: inline-flex;
      opacity: 1; }

.suggestion-chips-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 60%;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 5px; }

.suggestion-chip {
  background-color: #F1F3F4;
  color: #3c4043;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 8px 16px;
  font-size: 0.875em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center; }
  .suggestion-chip:hover {
    background-color: #E8EAED; }
  .suggestion-chip--selected {
    border-color: #b0b5bd; }

.info-bar-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 5px;
  gap: 10px;
  box-sizing: border-box;
  font-size: 16px;
  z-index: 999;
  overflow-x: hidden; }

.info-bar {
  position: relative;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid;
  animation: slidein 1s; }
  .info-bar.theme-light {
    background-color: #FFFFFF; }
  .theme-light .info-bar {
    background-color: #FFFFFF; }
  .info-bar.theme-light {
    border-color: #D0D0D0; }
  .theme-light .info-bar {
    border-color: #D0D0D0; }
  .info-bar__msg {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 10px;
    max-width: 350px; }
  .info-bar__type-icon {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    box-sizing: border-box;
    padding: 3px; }
  .info-bar__close-btn {
    align-self: flex-start; }
  .info-bar__close-icon {
    font-size: 20px;
    opacity: 0.3;
    align-self: flex-start; }
    .info-bar__close-icon:hover {
      opacity: 1; }

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%; }
  to {
    margin-left: 0%;
    width: 100%; } }

.icon {
  font-family: 'Material Symbols Outlined';
  font-size: 20px; }
  .icon--clickable {
    cursor: pointer; }
  .icon--filled {
    font-variation-settings: 'FILL' 1; }

.icon-with-number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .icon-with-number__number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -2px;
    right: -2px;
    border-radius: 100%;
    width: 10px;
    padding: 1px;
    font-size: 10px; }
    .icon-with-number__number.theme-light {
      background-color: #4F1140; }
    .theme-light .icon-with-number__number {
      background-color: #4F1140; }
    .icon-with-number__number.theme-light {
      color: #FFFFFF; }
    .theme-light .icon-with-number__number {
      color: #FFFFFF; }

/* material-symbols-outlined-regular - latin */
/* Download URL: https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@40,400,0..1 */
@font-face {
  font-display: swap;
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/material-symbols-outlined-v296-opsz40-wght400-fill.woff2") format("woff2"); }

/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.btn {
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color .2s;
  cursor: pointer;
  border-color: transparent;
  border-width: 2px;
  display: inline-block;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  border-radius: 4px;
  font-weight: 700; }
  .btn.theme-light {
    color: #FFFFFF; }
  .theme-light .btn {
    color: #FFFFFF; }
  .btn.theme-light {
    background-color: #991E80; }
  .theme-light .btn {
    background-color: #991E80; }
  .btn:hover:not(:disabled).theme-light {
    background-color: #4F1140; }
  .theme-light .btn:hover:not(:disabled) {
    background-color: #4F1140; }
  .btn[disabled], .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed; }

.btn.btn--tertiary {
  display: flex;
  align-items: center;
  padding: 0;
  font-weight: 600; }
  .btn.btn--tertiary.theme-light {
    color: #4F1140; }
  .theme-light .btn.btn--tertiary {
    color: #4F1140; }
  .btn.btn--tertiary.theme-light {
    background-color: transparent; }
  .theme-light .btn.btn--tertiary {
    background-color: transparent; }
  .btn.btn--tertiary:hover {
    text-decoration: underline; }
    .btn.btn--tertiary:hover.theme-light {
      background-color: transparent; }
    .theme-light .btn.btn--tertiary:hover {
      background-color: transparent; }

.flat-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: initial;
  font-family: "Inter", sans-serif; }

.feedback-popup-header {
  width: 100%;
  padding: 10px 0px 20px 0px; }
  .feedback-popup-header--title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase; }

.feedback-popup-footer {
  width: 100%;
  padding-top: 20px;
  display: flex;
  justify-content: space-between; }
  .feedback-popup-footer--cancel-btn {
    padding: 8px;
    cursor: pointer; }
    .feedback-popup-footer--cancel-btn:hover {
      text-decoration: underline; }
  .feedback-popup-footer--send-btn {
    padding: 8px;
    background-color: grey;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    min-width: 60px; }

.feedback-popup {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.comments-input-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 10px; }

.comments-input-wrapper textarea {
  width: 95%;
  max-height: 100px;
  resize: none;
  padding: 15px;
  border: none;
  background: none;
  font-size: 14px;
  outline: none;
  overflow-y: auto;
  line-height: 1.4; }

.comments-input-wrapper textarea::placeholder {
  color: #aaa; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #F4F5F7;
  color: #172B4D;
  margin: 0;
  line-height: 1.5; }

.document-buckets-page {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  justify-content: center; }

.document-buckets-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px; }

.page-navigation {
  margin-bottom: 24px; }
  .page-navigation .back-link {
    color: #5E6C84;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    display: inline-flex;
    align-items: center; }
    .page-navigation .back-link:hover {
      color: #172B4D; }
    .page-navigation .back-link .icon.back-icon {
      margin-right: 6px;
      stroke: #6B778C; }

.page-main-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  justify-content: center; }
  .page-main-header .avatar-large-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #EBECF0;
    margin-right: 20px; }
  .page-main-header .profile-title-group {
    display: flex;
    align-items: center; }
    .page-main-header .profile-title-group h1 {
      font-size: 2.2em;
      font-weight: 600;
      margin: 0 12px 0 0;
      color: #172B4D; }
    .page-main-header .profile-title-group .edit-profile-button {
      background: none;
      border: none;
      padding: 4px;
      cursor: pointer;
      color: #6B778C;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px; }
      .page-main-header .profile-title-group .edit-profile-button:hover {
        background-color: #EBECF0; }
      .page-main-header .profile-title-group .edit-profile-button .icon {
        stroke: #6B778C; }

.page-content {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02); }

.title-description-section {
  margin-bottom: 24px; }
  .title-description-section h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #172B4D; }
  .title-description-section .subtitle {
    font-size: 0.95em;
    color: #5E6C84;
    margin: 0; }

.controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.action-buttons-group {
  display: flex;
  gap: 10px; }

.search-buckets-wrapper {
  position: relative;
  display: flex;
  align-items: center; }

.search-buckets-input {
  padding: 10px 12px 10px 38px;
  border: 1px solid #DFE1E6;
  border-radius: 4px;
  font-size: 0.9em;
  min-width: 280px; }
  .search-buckets-input:focus {
    outline: none;
    border-color: #0067ff;
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.1); }

.search-icon-input {
  position: absolute;
  left: 12px;
  color: #6B778C;
  pointer-events: none; }

.action-button {
  padding: 9px 15px;
  border-radius: 4px;
  font-size: 0.875em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: #F4F5F7;
  color: #42526E;
  border: 1px solid #DFE1E6; }
  .action-button .button-icon {
    margin-right: 6px;
    stroke-width: 2.5px; }
  .action-button:hover {
    background-color: #EBECF0; }
  .action-button.primary {
    background-color: #4A5568;
    color: #FFFFFF;
    border-color: #4A5568; }
    .action-button.primary .button-icon {
      stroke: #FFFFFF; }
    .action-button.primary:hover {
      background-color: #2D3748;
      border-color: #2D3748; }

.buckets-table {
  border: 1px solid #DFE1E6;
  border-radius: 4px;
  font-size: 0.9em; }
  .buckets-table .buckets-table-header, .buckets-table .buckets-table-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DFE1E6; }
    .buckets-table .buckets-table-header:last-child, .buckets-table .buckets-table-row:last-child {
      border-bottom: none; }
  .buckets-table .buckets-table-header {
    background-color: #F4F5F7;
    padding: 12px 16px;
    font-weight: 600;
    color: #5E6C84;
    text-transform: capitalize; }
  .buckets-table .buckets-table-row {
    padding: 14px 16px;
    background-color: #FFFFFF;
    cursor: pointer; }
    .buckets-table .buckets-table-row:hover {
      background-color: #fafafb; }
  .buckets-table .table-header-cell, .buckets-table .table-cell {
    flex: 1;
    padding: 0 8px; }
    .buckets-table .table-header-cell:first-child, .buckets-table .table-cell:first-child {
      padding-left: 0; }
    .buckets-table .table-header-cell:last-child, .buckets-table .table-cell:last-child {
      padding-right: 0; }
    .buckets-table .table-header-cell.bucket-name, .buckets-table .table-cell.bucket-name {
      flex-grow: 2;
      flex-basis: 30%;
      font-weight: 500;
      color: #172B4D; }
    .buckets-table .table-header-cell.client, .buckets-table .table-cell.client {
      flex-grow: 2;
      flex-basis: 25%;
      color: #5E6C84; }
    .buckets-table .table-header-cell.num-docs, .buckets-table .table-cell.num-docs {
      flex-grow: 1;
      flex-basis: 20%;
      text-align: left;
      color: #5E6C84; }
    .buckets-table .table-header-cell.last-modified, .buckets-table .table-cell.last-modified {
      flex-grow: 1;
      flex-basis: 20%;
      text-align: left;
      color: #5E6C84; }
    .buckets-table .table-header-cell.actions, .buckets-table .table-cell.actions {
      flex-grow: 0;
      flex-basis: 5%;
      text-align: right;
      color: #6B778C;
      display: inline-flex;
      padding: 4px;
      border-radius: 4px; }
      .buckets-table .table-header-cell.actions:hover, .buckets-table .table-cell.actions:hover {
        background-color: #EBECF0;
        color: #172B4D; }
      .buckets-table .table-header-cell.actions .icon, .buckets-table .table-cell.actions .icon {
        stroke-width: 2.5px; }
  .buckets-table .table-header-cell.actions {
    text-align: right; }

/* Your existing .action-button styles (from main.css:724) */
.action-button {
  padding: 9px 15px;
  border-radius: 4px;
  font-size: 0.875em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  /* Changed from flex to inline-flex if you want it to wrap content */
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: #F4F5F7;
  /* This seems like the default background */
  color: #42526E;
  border: 1px solid #DFE1E6; }

/* Your existing .action-button:hover styles (from main.css:741) */
.action-button:hover {
  background-color: #EBECF0; }

/* Specific styling for the primary button from your image */
.action-button.primary {
  /* Add any specific styles for the "primary" state here if they differ */
  /* For example, if it had a different background/text color: */
  /* background-color: #007bff; */
  /* color: white; */
  /* border-color: #007bff; */ }

/* Make sure the SVG inside the label also aligns correctly */
.action-button .icon {
  margin-right: 8px;
  /* Adjust as needed for spacing between icon and text */
  /* Add any other icon specific styles if needed */ }

/* Ensure the label behaves like a block/inline-block if needed for layout */
.file-upload-container {
  /* If you want the label to take full width of its parent */
  /* display: block; */
  /* or if you want it to behave like an inline element */
  /* display: inline-block; */ }

.controls-and-table-section {
  display: flex;
  flex-direction: column;
  gap: 30px; }
  .controls-and-table-section--section {
    display: flex;
    flex-direction: column;
    gap: 10px; }

.dropzone {
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
  border: 2px dashed #ccc; }
  .dropzone--active {
    border: 2px dashed #007bff; }
  .dropzone__text {
    color: #666; }
    .dropzone__text--active {
      color: #007bff; }

.dropzone-input {
  display: none; }

.selected-files h4 {
  margin-bottom: 0; }

.selected-files__file-list {
  max-height: 200px;
  overflow-y: auto; }

.selected-files__subtitle {
  color: #999;
  margin-left: 8px; }

.selected-files__button-container {
  margin-top: 10px;
  display: flex;
  gap: 10px; }

.selected-files__upload-button {
  background: #007bff;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer; }
  .selected-files__upload-button:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7; }

.selected-files__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid #eee; }

.selected-files__delete-button {
  background: none;
  border: none;
  color: #d00;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px; }
  .selected-files__delete-button:hover {
    background: rgba(220, 0, 0, 0.1); }

.selected-files__cancel-button {
  background: #ccc;
  color: black;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer; }

.profile-image-container {
  display: flex;
  width: min-content; }

.profile-logo {
  width: 200px;
  height: auto;
  z-index: 1000; }

/* A normalized styling */
html, body, #app, .app-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.app-container {
  display: flex; }
