File size: 2,074 Bytes
6e3c3ba 7165f53 6e3c3ba 7165f53 6e3c3ba 7165f53 6e3c3ba 7165f53 6e3c3ba 7165f53 6e3c3ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | /* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Smooth Scrolling */
html {
scroll-behavior: smooth;
}
/* Typography Improvements */
.prose p {
margin-bottom: 1rem;
line-height: 1.75;
}
.prose strong {
color: #0f172a;
font-weight: 600;
}
/* Policy Section Transitions */
.policy-section {
transition: opacity 0.3s ease;
}
/* Table of Contents Active State */
.toc-link.active {
background-color: #eef2ff;
color: #4f46e5;
font-weight: 600;
}
/* Print Styles */
@media print {
.no-print {
display: none !important;
}
body {
background: white;
}
.policy-section {
break-inside: avoid;
page-break-inside: avoid;
}
aside {
display: none;
}
.lg\:col-span-9 {
width: 100%;
max-width: 100%;
}
}
/* Focus Visible Styles */
*:focus-visible {
outline: 2px solid #4f46e5;
outline-offset: 2px;
}
/* Selection Color */
::selection {
background-color: #e0e7ff;
color: #312e81;
}
/* Mobile Optimizations */
@media (max-width: 1024px) {
.policy-section {
scroll-margin-top: 100px;
}
}
/* Animation for cards */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.policy-section {
animation: fadeIn 0.5s ease-out forwards;
}
/* Stagger animations */
.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(3) { animation-delay: 0.15s; }
.policy-section:nth-child(5) { animation-delay: 0.2s; }
.policy-section:nth-child(7) { animation-delay: 0.25s; }
.policy-section:nth-child(9) { animation-delay: 0.3s; }
.policy-section:nth-child(11) { animation-delay: 0.35s; }
.policy-section:nth-child(13) { animation-delay: 0.4s; } |