/* Additional custom styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #52c9a8;
    outline-offset: 2px;
}

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

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

::-webkit-scrollbar-thumb {
    background: #bdf0dd;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8ce3c6;
}

/* Print styles */
@media print {
    nav, button, #mobile-menu {
        display: none;
    }
    
    body {
        color: #0f172a;
        background: white;
    }
    
    .soft-shadow, .soft-shadow-lg {
        box-shadow: none;
    }
}
