/* style.css */

/* 1. Global Settings */
html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Inter', sans-serif; 
    /* Firefox Scrollbar Support */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

/* 2. Global Scrollbar (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 5px; 
    border: 2px solid #f8fafc; /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* 3. Specific File List Overrides (Thinner scrollbar for small tool areas) */
.file-list::-webkit-scrollbar { 
    width: 4px; 
}
.file-list::-webkit-scrollbar-thumb { 
    background: #cbd5e1; 
    border-radius: 4px; 
    border: none;
}

/* 4. Text Styling for Content Pages (Privacy Policy, Terms, FAQs) */
.prose h1 {
    color: #111827;
    font-weight: 800;
    margin-bottom: 0.5em;
    font-size: 1.8rem;
}

.prose h2 { 
    color: #1f2937; 
    font-weight: 700; 
    margin-top: 1.5em; 
    margin-bottom: 0.5em; 
    font-size: 1.25rem; 
}

.prose h3 {
    color: #374151;
    font-weight: 600;
    margin-top: 1.25em;
    margin-bottom: 0.5em;
    font-size: 1.1rem;
}

.prose p { 
    color: #4b5563; 
    margin-bottom: 1em; 
    line-height: 1.6; 
}

.prose ul { 
    list-style-type: disc; 
    padding-left: 1.5em; 
    color: #4b5563; 
    margin-bottom: 1em; 
}

.prose ol { 
    list-style-type: decimal; 
    padding-left: 1.5em; 
    color: #4b5563; 
    margin-bottom: 1em; 
}

.prose li {
    margin-bottom: 0.5em;
}

.prose strong {
    color: #111827;
    font-weight: 600;
}

.prose a {
    color: #4f46e5;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: #4338ca;
}

/* 5. Utility: Checkerboard Pattern (Used in PNG to SVG tool) */
.bg-checkerboard {
    background-color: #ffffff;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABlBMVEUAAAAAwv8A/8ALAAAAAXRSTlMAQObYZgAAABBJREFUGNNjYARiBgbk4AAAQ4AAzW4n/QAAAABJRU5ErkJggg==');
}