/* Custom styles for Khata Management System */

/* Smooth fade-in for pages */
body {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Button hover animation */
.btn-hover {
    transition: all 0.3s ease-in-out;
}
.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Card shadow */
.card-shadow {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

/* Custom navbar shadow */
.nav-shadow {
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}
