/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Custom utility classes */
.shadow-soft {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

/* Animation classes */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        @apply bg-gray-900 text-gray-100;
    }
    
    .bg-white {
        @apply bg-gray-800;
    }
    
    .text-gray-600, .text-gray-800 {
        @apply text-gray-300;
    }
}