/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

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

::-webkit-scrollbar-thumb {
    background: #FF7B00;
    border-radius: 4px;
}

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

/* Pagination styles for light mode */
#pagination a {
    color: #0D1B2A; /* dark text for light mode */
    background-color: #F5F5F5; /* light background */
    margin: 0 4px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 0.5rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

#pagination a:hover {
    background-color: #FF7B00;
    color: white;
}

#pagination a[disabled] {
    color: #A0AEC0;
    background-color: #E2E8F0;
    cursor: not-allowed;
}
