
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
        
        :root {
            --primary: 34 197 151;
        }
        
        body {
            font-family: 'Inter', system-ui, sans-serif;
        }
        
        .section {
            height: 100vh;
            padding-bottom: 100px;
        }
        #chat-body {
            height: calc(100vh - 180px);
            overflow-y: auto;
        }
        #convo-list {
            height: calc(100vh - 250px);
            overflow-y: auto;
        }
        
        .section.hidden {
            display: none !important;
        }
        
        .sub-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background: white;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
        }
        
        .sub-modal.active {
            transform: translateX(0);
        }

        
        
        .dark .sub-modal {
            background: #111827;
        }
        
        .bottom-nav {
            transition: all 0.3s ease;
        }
        
        .carousel-slide {
            transition: transform 0.5s ease;
        }
        
        .skeleton {
            animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        
        .toast {
            animation: toastIn 0.3s ease forwards;
        }
        
        @keyframes toastIn {
            from { transform: translateY(100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
/* ===================================
  PAGE LOADER
  =================================== */
  .page-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 200000;
  }
  .page-load.active {
    display: flex
  }
  .loader-con {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--color-background);
    border-radius: 10px;
  }
  .loader {
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 3px;
    background: 
      radial-gradient(farthest-side,#ffa516 95%,#0000) 50% 0/12px 12px no-repeat,
      radial-gradient(farthest-side,#0000 calc(100% - 5px),#ffa516 calc(100% - 4px)) content-box;
    animation: l6 2s infinite ;
  }
  @keyframes l6 {to{transform: rotate(1turn)}}
  
  #loader-text {
    color: var(--color-text);
  }

  .dark {
    color-scheme: dark;
}
.login-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.viewer-con {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  height: 100vh;
  transform: scale(0);
  background: rgba(0,0,0,0.8);
  transition: .3s all ease-in-out;
  z-index: 1000;
}
.doc-viewer {
    overflow-y: auto;
}
.viewer-con.active {
  transform: scale(1);
}
.viewer {
  height: 100%;
}
#doc-viewer {
    min-height: 100%;
    background: #fff;
    color: #000;
    overflow-x: auto;
}
.pdf-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: red !important;
  font-size: 30px;
  z-index: 200;
}

.carousel-slide {
    background: url("/static/logos/splash.png") no-repeat fixed center !important;
    background-size: 100% 100% !important;
}

/* The Modal (background) */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.image-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.image-modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close-image {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close-image:hover,
.close-image:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .image-modal-content {
    width: 100%;
  }
}
.status-dot.online { background: #22c55e; }
.status-dot.idle { background: #eab308; }
.status-dot.offline { background: #94a3b8; }