
        /* Base styles inherited from index.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(180deg, hsl(210, 17%, 98%), hsl(210, 17%, 96%));
            color: hsl(215, 25%, 27%);
            min-height: 100vh;
            display: flex; /* Added for centering */
            flex-direction: column; /* Added for centering */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .header {
            background: white;
            border-bottom: 1px solid hsl(214, 31%, 91%);
            box-shadow: 0 2px 10px -1px hsl(215, 25%, 27%, 0.1);
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 32px;
            height: 32px;
            color: hsl(212, 100%, 45%);
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
        }
        
        .tagline {
            font-size: 14px;
            color: hsl(215, 16%, 47%);
        }

        /* --- Login Page Specific Styles --- */
        
        .main {
            flex-grow: 1; /* Allows main content to take up remaining vertical space */
            display: flex;
            align-items: center; /* Vertically center the login box */
            justify-content: center; /* Horizontally center the login box */
            padding: 40px 0;
        }

        .login-box {
            width: 100%;
            max-width: 400px; /* Constrain the width of the login form */
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px -2px hsl(212, 100%, 45%, 0.1);
            border: 1px solid hsl(214, 31%, 91%);
            text-align: center;
        }

        .login-box h2 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 24px;
            color: hsl(212, 100%, 45%); /* Use main accent color for heading */
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input[type="text"],
        .form-group input[type="password"] {
            width: 100%;
            padding: 12px;
            border: 1px solid hsl(214, 31%, 91%);
            border-radius: 6px;
            font-size: 16px;
            color: hsl(215, 25%, 27%);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-group input[type="text"]:focus,
        .form-group input[type="password"]:focus {
            outline: none;
            border-color: hsl(212, 100%, 45%);
            box-shadow: 0 0 0 3px hsl(212, 100%, 45%, 0.2);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            border-radius: 6px;
            font-weight: 500;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: all 0.2s ease;
        }
        
        .btn-medical {
            background: linear-gradient(135deg, hsl(212, 100%, 45%), hsl(212, 100%, 55%));
            color: white;
            box-shadow: 0 4px 20px -2px hsl(212, 100%, 45%, 0.1);
        }
        
        .btn-medical:hover {
            background: hsl(212, 100%, 40%);
            transform: translateY(-1px);
        }

        .forgot-password {
            margin-top: 15px;
            font-size: 14px;
        }

        .forgot-password a {
            color: hsl(212, 100%, 45%);
            text-decoration: none;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        @media (max-width: 500px) {
            .login-box {
                margin: 0 24px;
                padding: 30px 20px;
            }
        }
   



        .main {
            padding: 48px 0;
        }
        
        .hero {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .hero h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .hero p {
            font-size: 20px;
            color: hsl(215, 16%, 47%);
            max-width: 768px;
            margin: 0 auto 32px;
            line-height: 1.6;
        }
        
        .role-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 32px;
            max-width: 1024px;
            margin: 0 auto 48px;
        }
        
        .card {
            background: white;
            padding: 32px;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 4px 20px -2px hsl(212, 100%, 45%, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            box-shadow: 0 8px 30px -2px hsl(212, 100%, 45%, 0.15);
            border-color: hsl(212, 100%, 45%, 0.2);
            transform: translateY(-2px);
        }
        
        .card.healthcare:hover {
            border-color: hsl(142, 76%, 36%, 0.2);
        }
        
        .card-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
        }
        
        .admin-icon {
            color: hsl(212, 100%, 45%);
        }
        
        .healthcare-icon {
            color: hsl(142, 76%, 36%);
        }
        
        .card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .card p {
            color: hsl(215, 16%, 47%);
            margin-bottom: 24px;
            line-height: 1.5;
        }
        
     
      
        
        .btn-healthcare {
            background: hsl(142, 76%, 36%);
            color: white;
            box-shadow: 0 4px 20px -2px hsl(212, 100%, 45%, 0.1);
        }
        
        .btn-healthcare:hover {
            background: hsl(142, 76%, 32%);
            transform: translateY(-1px);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature {
            text-align: center;
            padding: 24px;
        }
        
        .feature-icon {
            width: 48px;
            height: 48px;
            color: hsl(212, 100%, 45%);
            margin: 0 auto 16px;
        }
        
        .feature h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .feature p {
            color: hsl(215, 16%, 47%);
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .role-cards {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .hero h2 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
		
		
/* Clinican.html CSS Start */

.main-content {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 24px;
            padding: 24px 0;
        }
        
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .card {
            background: white;
            padding: 16px;
            border-radius: 12px;
            box-shadow: 0 2px 10px -1px hsl(215, 25%, 27%, 0.1);
        }
        
        .card h2 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .icon {
            width: 16px;
            height: 16px;
        }
        
        .icon-primary {
            color: hsl(212, 100%, 45%);
        }
        
        .icon-accent {
            color: hsl(142, 76%, 36%);
        }
        
        .btn-list {
            /*
            display: flex;
            flex-direction: column;
            gap: 8px;
            */
			text-align:left;
            max-width: 400px;
            margin: 0 auto;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden; /* Important for border-radius */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .btn-ghost {
            background: transparent;
            border: none;
            padding: 8px;
            text-align: left;
            cursor: pointer;
            border-radius: 6px;
            font-size: 14px;
            transition: background 0.2s ease;
        }
        
        .btn-ghost:hover {
            background: hsl(210, 17%, 95%);
        }
        
        .chat-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px -1px hsl(215, 25%, 27%, 0.1);
            display: flex;
            flex-direction: column;
            height: 600px;
        }
        
        .chat-header {
            padding: 16px;
            border-bottom: 1px solid hsl(214, 31%, 91%);
            background: hsl(210, 17%, 95%, 0.3);
            border-radius: 12px 12px 0 0;
        }
        
        .chat-header h2 {
            font-size: 18px;
            font-weight: 600;
        }
        
        .chat-header p {
            font-size: 14px;
            color: hsl(215, 16%, 47%);
            margin-top: 4px;
        }
        
        .chat-messages {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .welcome-message {
            background: hsl(212, 100%, 45%, 0.1);
            padding: 16px;
            border-radius: 8px;
            border: 1px solid hsl(212, 100%, 45%, 0.2);
        }
        
        .welcome-content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .welcome-icon {
            width: 24px;
            height: 24px;
            color: hsl(212, 100%, 45%);
            margin-top: 4px;
        }
        
        .welcome-text h4 {
            color: hsl(212, 100%, 45%);
            font-weight: 500;
            margin-bottom: 4px;
        }
        
        .welcome-text p {
            font-size: 14px;
            color: hsl(215, 16%, 47%);
            line-height: 1.4;
        }
        
        .user-message {
            background: hsl(142, 76%, 36%, 0.1);
            padding: 12px;
            border-radius: 8px;
            border: 1px solid hsl(142, 76%, 36%, 0.2);
            max-width: 60%;
            align-self: flex-end;
        }
        
        .ai-message {
            background: white;
            padding: 16px;
            border-radius: 8px;
            border: 1px solid hsl(214, 31%, 91%);
            box-shadow: 0 1px 3px hsl(215, 25%, 27%, 0.1);
        }
        
        .ai-message p {
            font-size: 14px;
            line-height: 1.5;
            white-space: pre-line;
        }
        
        .chat-input {
            border-top: 1px solid hsl(214, 31%, 91%);
            padding: 16px;
            background: hsl(210, 17%, 95%, 0.3);
            border-radius: 0 0 12px 12px;
        }
        
        .input-row {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .input-wrapper {
            flex: 1;
            position: relative;
        }
        
        .input-field {
            width: 100%;
            padding: 12px 48px 12px 12px;
            border: 1px solid hsl(214, 31%, 91%);
            border-radius: 6px;
            font-size: 14px;
            outline: none;
        }
        
        .input-field:focus {
            border-color: hsl(212, 100%, 45%);
        }
        
        .mic-btn {
            position: absolute;
            right: 4px;
            top: 62%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }
        
        .mic-btn:hover {
            background: hsl(210, 17%, 95%);
        }
        
        .mic-icon {
            width: 16px;
            height: 16px;
        }
        
        .send-btn {
            background: linear-gradient(135deg, hsl(212, 100%, 45%), hsl(212, 100%, 55%));
            color: white;
            border: none;
            padding: 12px 12px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
			margin-top: 20px;
        }
        
        .send-btn:hover {
            background: hsl(212, 100%, 40%);
        }
        
        .send-icon {
            width: 16px;
            height: 16px;
        }
        
        .disclaimer {
            font-size: 12px;
            color: hsl(215, 16%, 47%);
            margin-top: 8px;
        }
        
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                order: 2;
                flex-direction: row;
                overflow-x: auto;
            }
            
            .sidebar .card {
                min-width: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .sidebar {
                flex-direction: column;
            }
            
            .sidebar .card {
                min-width: auto;
            }
        }

        /* --- Basic Styling --- */
        /*
        body {
            font-family: Arial, sans-serif;
            margin: 20px;
            background-color: #f4f4f9;
        }
        

        .btn-list {
            max-width: 400px;
            margin: 0 auto;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden; /* Important for border-radius */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        */

        .accordion-item {
            border-bottom: 1px solid #eee;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        /* --- Button (Header) Styling --- */
        /*
        .btn-ghost {
            background-color: #fff;
            color: #333;
            padding: 15px;
            width: 100%;
            text-align: left;
            border: none;
            cursor: pointer;
            outline: none;
            transition: background-color 0.3s ease;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-ghost:hover {
            background-color: #e0e0e0;
        }
        */

        .btn-ghost.active {
            background-color: #007bff;
            color: white;
        }

        /* --- Content (File List) Styling and Animation --- */
        .file-list-content {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            background-color: #f9f9f9;
        }

        /* Styling for the expanded state */
        .file-list-content.show {
            /* This value should be large enough to contain all content */
            max-height: 500px; 
            padding: 15px;
            border-top: 1px solid #eee;
        }

        /* --- Individual File/Checkbox Styling --- */
        .file-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .file-item input[type="checkbox"] {
            margin-right: 10px;
        }

        /* Arrow Indicator Styling */
        .arrow {
            margin-left: 10px;
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .btn-ghost.active .arrow {
            transform: rotate(90deg);
        }   
        
        .card-list {
            max-width: 450px; /* Slightly wider */
            margin: 20px auto;
            background-color: #ffffff; /* White background for the card */
            border: 1px solid #ddd;
            border-radius: 12px; /* Smoother corners */
            overflow: hidden; 
            box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Stronger shadow for a lifted look */
        }

        /* Ensure the inner accordion items still look good */
        .accordion-item {
            border-bottom: 1px solid #eee;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }     
        
        .sources-container {
            margin-top: 10px;
            border-top: 1px solid #eee;
            padding-top: 5px;
        }
        .sources-header {
            cursor: pointer;
            color: #4a76a8;
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        .sources-toggle {
            margin-right: 5px;
            transition: transform 0.3s ease;
        }
        .sources-content {
            display: none;
            margin-top: 5px;
            padding: 5px;
            background-color: #f9f9f9;
            border-radius: 5px;
            font-size: 13px;
        }
        .source-item {
            margin-bottom: 5px;
            padding: 5px;
            border-bottom: 1px dashed #eee;
        }
        .source-info {
            font-style: italic;
            color: #777;
            font-size: 12px;
        }
        .rotated {
            transform: rotate(90deg);
        }
        .loader-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
            border-radius: 10px;
            z-index: 10; /* Ensure it's on top */
        }

        .loader {
            border: 8px solid #f3f3f3; /* Light grey */
            border-top: 8px solid #4a76a8; /* Theme color */
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin-bottom: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }   
		
		.btn2 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid hsl(214, 31%, 91%);
            background: white;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
			margin-left:15px;
        }
        
        .btn2:hover {
            background: hsl(210, 17%, 95%);
        }

/* Clinican.html CSS End */