/* Clinician Page Styles */
.clinician-page {
    min-height: 100vh;
    background-color: #f5e6d3;
    display: flex;
    flex-direction: column;
}

/* Header */
.clinician-header {
    background: white;
    border-bottom: none;
    padding: 16px 20px;
}

.clinician-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.clinician-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.clinician-logo .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.clinician-logo .logo-text {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Main Content */
.clinician-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.clinician-container {
    width: 100%;
    max-width: 900px;
}

.clinician-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.clinician-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.clinician-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #000;
}

.clinician-content h2:first-of-type {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 500;
    color: #666;
}

.clinician-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.clinician-content p {
    margin-bottom: 16px;
    color: #333;
    font-size: 16px;
}

.clinician-content ul,
.clinician-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: #333;
}

.clinician-content li {
    margin-bottom: 8px;
    font-size: 16px;
}

.clinician-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.clinician-content a:hover {
    color: #357abd;
}

.clinician-content strong {
    font-weight: 600;
    color: #000;
}

.clinician-content em {
    font-style: italic;
}

.clinician-content blockquote {
    border-left: 4px solid #4a90e2;
    padding-left: 16px;
    margin: 16px 0;
    color: #666;
    font-style: italic;
}

/* Sections */
.clinician-section {
    margin-bottom: 32px;
}

.clinician-section:last-of-type {
    margin-bottom: 0;
}

.clinician-note {
    background-color: #f8f9fa;
    border-left: 4px solid #4a90e2;
    padding: 12px 16px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-style: italic;
    color: #555;
}

/* Decision Guide */
.decision-guide {
    margin: 24px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.decision-step {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.decision-step:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.decision-step:last-child {
    margin-bottom: 0;
}

.decision-question {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.decision-arrow {
    font-size: 24px;
    color: #4a90e2;
    margin: 8px 0;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.decision-answer {
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 4px;
}

.decision-answer.decision-yes {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.decision-answer.decision-no {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

/* Contact Section */
.clinician-contact {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-email {
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
}

.contact-email a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer */
.clinician-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.clinician-footer p {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .clinician-content {
        padding: 24px;
    }

    .clinician-content h1 {
        font-size: 28px;
    }

    .clinician-content h2 {
        font-size: 22px;
    }

    .clinician-content h2:first-of-type {
        font-size: 24px;
    }

    .clinician-content h3 {
        font-size: 18px;
    }

    .clinician-content p,
    .clinician-content li {
        font-size: 15px;
    }

    .decision-guide {
        padding: 16px;
    }

    .decision-step {
        padding: 12px;
    }

    .decision-question {
        font-size: 15px;
    }

    .decision-answer {
        font-size: 14px;
    }

    .clinician-contact {
        padding: 20px;
    }
}
