/* Standards pages shared styles - matches main site design */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #64748b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Ensure proper spacing for scroll-margin-top on anchor targets */
[id] {
    scroll-margin-top: 80px;
}

/* Standards-specific styles */
.standard-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.standard-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.requirement-item .bullet {
    color: #0d9488;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.requirement-item .content {
    color: #334155;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0d9488;
    padding: 1.5rem;
    border-radius: 0.375rem;
    margin: 1.5rem 0;
}

.highlight-box h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Print styles */
@media print {
    nav,
    footer,
    .no-print {
        display: none !important;
    }
}
