/* Base Styles */
body {
    line-height: 1.6;
}

/* Typography */
.prose {
    max-width: 65ch;
}

.prose h2 {
    @apply text-2xl font-semibold mt-8 mb-4 text-primary;
}

.prose h3 {
    @apply text-xl font-medium mt-6 mb-3 text-secondary;
}

.prose p {
    @apply my-4;
}

.prose a {
    @apply text-accent hover:underline;
}

/* Animations */
.transition {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    @apply bg-gray-100;
}

::-webkit-scrollbar-thumb {
    @apply bg-primary rounded-full;
}

::-webkit-scrollbar-thumb:hover {
    @apply bg-secondary;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    a {
        text-decoration: none;
    }
    
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}