/* /assets/css/style.css */

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.table > :not(caption) > * > * {
    padding: 1rem 0.5rem;
}

.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}

.breadcrumb-item a {
    text-decoration: none;
}
