/* ==========================================
   Main Stylesheet for Pharma Theme
   ========================================== */

/* ==========================================
   Header Styles
   ========================================== */

.site-header {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-logo {
    height: 40px;
    width: auto;
}

.site-title {
    margin: 0;
    font-size: 1.25rem;
}

.site-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.site-description {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.primary-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.primary-menu li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero-section {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-foreground);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    background-color: #ffffff;
    color: #1e293b;
    border: 2px solid #ffffff;
}

.hero-cta .btn-primary:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #f1f5f9;
}

.hero-cta .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

/* ==========================================
   Workflow Section
   ========================================== */

.workflow-section {
    padding: 80px 0;
    background: var(--background);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.workflow-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(30, 41, 59, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto 20px;
    background: var(--muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.workflow-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.workflow-step p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.workflow-benefits {
    background: var(--muted);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.workflow-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--background);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item p {
    margin: 0;
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Features Grid
   ========================================== */

.features-overview, .user-roles-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-foreground);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* ==========================================
   User Roles Section
   ========================================== */

.user-roles-section {
    background: var(--bg-light);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.role-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.role-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.role-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.role-features {
    list-style: none;
    padding: 0;
    text-align: center;
}

.role-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.role-features li:last-child {
    border-bottom: none;
}

.role-features li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 10px;
}

/* ==========================================
   CTA Section
   ========================================== */

.cta-section {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #1e293b;
    border: 2px solid #ffffff;
}

.cta-section .btn-primary:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #f1f5f9;
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

.cta-form-wrapper {
    max-width: 600px;
    margin: 3rem auto 0;
}

.contact-form-inline {
    background-color: var(--card);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Contact Info Section
   ========================================== */

.contact-info-section {
    padding: 60px 0;
    background-color: var(--muted);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-item h3 {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-info-item p {
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--primary);
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ==========================================
   Contact Section (Legacy - Remove if not used)
   ========================================== */

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.app-links {
    margin-top: 2rem;
}

.app-links h4 {
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* ==========================================
   Footer Styles
   ========================================== */

.site-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-widgets {
    padding: 60px 0;
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget h3 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text, .footer-contact {
    margin: 0;
    font-size: 0.875rem;
}

.footer-text a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-app-links {
    display: flex;
    gap: 10px;
    font-size: 0.875rem;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Features Page
   ========================================== */

.page-header {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-detail-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-detail h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.role-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.role-detail-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.role-detail-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.access-control-benefits {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.access-control-benefits h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.features-cta {
    padding: 60px 0;
}

.cta-box {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.cta-box h2 {
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ==========================================
   Contact Page
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.quick-links {
    margin-top: 30px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    padding: 8px 0;
}

.form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.faq-section {
    margin-top: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-weight: 600;
}

/* ==========================================
   Contact Form Styling
   ========================================== */

.wpcf7 .form-row {
    margin-bottom: 1.5rem;
}

.wpcf7 label {
    display: block;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.wpcf7 .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background);
    color: var(--foreground);
}

.wpcf7 .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1);
}

.wpcf7 textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.wpcf7 .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.wpcf7 input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    cursor: pointer;
}

.wpcf7 .wpcf7-not-valid-tip {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wpcf7 .wpcf7-response-output {
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem 0 0;
    border: 1px solid;
}

.wpcf7 .wpcf7-mail-sent-ok {
    border-color: var(--success-color);
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.wpcf7 .wpcf7-validation-errors {
    border-color: var(--error-color);
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.wpcf7 .btn-primary {
    margin-top: 0.5rem;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .contact-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* ==========================================
   Documentation Page
   ========================================== */

.documentation-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    padding: 60px 0;
}

.doc-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.doc-navigation h3 {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 1.125rem;
}

.doc-navigation ul {
    list-style: none;
    padding: 0;
}

.doc-navigation li {
    margin-bottom: 0.5rem;
}

.doc-navigation a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.doc-navigation a:hover {
    color: var(--primary);
}

.doc-main {
    max-width: 800px;
}

.doc-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.doc-section:last-child {
    border-bottom: none;
}

.doc-section h2 {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.doc-section h3 {
    color: var(--foreground);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.doc-section h4 {
    color: var(--foreground);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.doc-section p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.doc-section ul,
.doc-section ol {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.doc-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.doc-section code {
    background-color: var(--muted);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
}

.doc-section a {
    color: var(--primary);
    text-decoration: underline;
}

.doc-section a:hover {
    color: var(--primary-hover);
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--card);
    border: 1px solid var(--border);
}

.doc-table thead {
    background-color: var(--muted);
}

.doc-table th,
.doc-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.doc-table th {
    font-weight: 600;
    color: var(--foreground);
}

.doc-table td {
    color: var(--muted-foreground);
}

.doc-table tbody tr:last-child td {
    border-bottom: none;
}

.doc-note {
    background-color: var(--accent);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.doc-note h4 {
    margin-top: 0;
    color: var(--foreground);
}

.doc-note ul {
    margin-bottom: 0;
}

.doc-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Documentation Pagination */
.doc-pagination {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.doc-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}

.doc-nav-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
    max-width: 48%;
}

.doc-nav-btn:hover {
    background: var(--muted);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.doc-nav-btn.prev-btn {
    justify-content: flex-start;
}

.doc-nav-btn.next-btn {
    justify-content: flex-end;
}

.doc-nav-btn .nav-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

.doc-nav-btn .nav-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.doc-nav-btn .nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    font-weight: 600;
}

.doc-nav-btn .nav-title {
    font-size: 1rem;
    color: var(--foreground);
    font-weight: 600;
}

.doc-nav-btn-spacer {
    flex: 1;
    max-width: 48%;
}

/* Active state for table of contents */
.doc-navigation li.active a {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .doc-nav-buttons {
        flex-direction: column;
    }

    .doc-nav-btn,
    .doc-nav-btn-spacer {
        max-width: 100%;
    }

    .doc-nav-btn.next-btn {
        order: 2;
    }

    .doc-nav-btn.prev-btn {
        order: 1;
    }
}

@media (max-width: 1024px) {
    .documentation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doc-sidebar {
        position: static;
        background-color: var(--muted);
        padding: 1.5rem;
        border-radius: 0.5rem;
    }
}
