  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    background-color: #f5f6f8;
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: cover; /* Cover the entire background */
    /* You can add more properties here, like background-position */
    color: #0D1945;
  }

  .btn-outline-arca {
    color: #14487f;
    border-color: #14487f;
    border-radius: 20px;
    background-color: white;
  }

  .btn-outline-arca:hover {
    color: #fff;
    background-color: #14487f;
    border-color: #14487f;
  }

  .btn-outline-arca-danger {
    color: #dc3545;
    border-color: #dc3545;
    border-radius: 20px;
    background-color: white;
  }

  .btn-outline-arca-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
  }

  .bg-arca{
    background-color: #14487f;
    text-decoration: none;
  }

  .chat-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
  }
  
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 10px;
  }

  .gaia-avatar{
    height: 40px;
  }

  .logo {
    width: 25px;
  }

  .user-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #14487f;
  }
  
  .messages {
    flex: 1;
    overflow-y: auto;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
  }
  
  .message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 20px;
    /*max-width: 80%;*/
    overflow-wrap: break-word;
  }

  message-text {
    max-height: 30vh;
    overflow-y: hidden;
  }

  .messages{
    position: relative;
  }

  .messages::-webkit-scrollbar {
    width: 0.45rem;
  }
  .messages::-webkit-scrollbar-thumb {
      background-color: #c3c5c7;
  }

  .message-container {
    display: flex;
    margin: 10px;
  }

  .chart-container {
    display: block;  /* or display: inline-block */
    width: 100%;
  }

  .chart-container:empty {
    display: none;
    height: 0;
    padding: 0;
    margin: 0;
  }

  .bot {
    background-color: #FFF;
    margin-right: auto;
  }

  .bot-inverse {
    background-color: #14487f;
    margin-right: auto;
    color: #FFF;
  }

  .bot-inverse > b{
    color: #FFF;
  }
  
  .user {
    background-color: #14487f;
    color: #ffffff;
    align-self: flex-end;
    margin-left: auto;
  }
  
  input[type="text"] {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    margin-right: 10px;
    background-color: #FFF;
  }
  
  button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #14487f;
    color: #ffffff;
    cursor: pointer;
  }

  .btn-send {
    background-color:#FFF;
    border-bottom-right-radius:25px;
    border-top-right-radius:25px;
    color: #14487f;
    box-shadow: 5px 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    z-index:10;
  }

  .timestamp {
    font-size: 12px;
    color: #777;
  }


  .dotsAnimation {
    position: relative;
    display: flex;
    opacity: 0.6;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #14487f;
    margin-right: 5px;
    opacity: 0.4;
    transform: scale(0.5);
    animation: pulseAnimation 1.5s infinite ease-in-out;
  }
  
  .dot:nth-child(2) {
    animation-delay: 0.5s; /* Delay the animation of the second dot */
  }
  
  .dot:nth-child(3) {
    animation-delay: 1s; /* Delay the animation of the third dot */
  }
  
  @keyframes pulseAnimation {
    0%, 100% {
      opacity: 0.4;
      transform: scale(0.5);
    }
    50% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .hints {
    margin-left: 70px;
    margin-bottom: 20px;
  }

  .feedback-thumb {
    text-decoration: none;
    font-size: medium;
    color:black;
  }

  .ai-label {
    font-size: 60%;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    color: red;
    z-index: 9999; /* Ensures it's on top of everything */
  }

  b {
    color: #14487f;
  }

  .email-body, .email-subject{
    margin-top: 20px;
    background-color: #f5f6f8;
    border-radius: 30px;
    padding: 30px;
  }

  /* Base table styling */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
  }

  /* Table header styling */
  th, td {
    padding: 5px 5px;
    border-bottom: 1px solid #ddd;
  }

  /* Header background and text color */
  th {
    background-color: #14487f;
    color: #ffffff;
    font-weight: bold;
  }

  /* Alternate row colors */
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }

  /* Adjust the font style and size for readability */
  table, th, td {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
  }

  /* Add some padding around the table */
  .table-container {
    overflow-x: auto;
  }

  .toggle-details-btn {
      cursor: pointer;
      background-color: #f8f9fa;
      border: 1px solid #ced4da;
      padding: 0.2rem 0.5rem;
      border-radius: 0.25rem;
      transition: background-color 0.3s ease;
  }

  .toggle-details-btn:hover {
      background-color: #e2e6ea;
  }

  .toggle-details-btn i {
      transition: transform 0.3s ease;
  }

  .badge-arca{
    background-color: #14487f
  }