/* Custom styles that can't be achieved with Tailwind */
.prose a {
    color: #0000EE;
    text-decoration: underline;
}

.prose a:hover {
    opacity: 0.8;
}

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

/* Custom focus styles */
button:focus, input:focus, textarea:focus {
    outline: 2px solid #20808D;
    outline-offset: 2px;
}

/* Animation for project cards */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #13343B;
}