/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', 'Noto Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom button hover states */
button:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease-in-out;
}

/* Custom responsive styles */
@media (min-width: 480px) {
    .responsive-padding {
        padding: 1rem;
    }
    
    .responsive-layout {
        flex-direction: row;
        align-items: center;
    }
}

/* Custom animations */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Custom background gradients */
.bg-gradient-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
} 