.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.stats-card {
    background: linear-gradient(135deg, #6B8DD6 0%, #8E37D7 100%);
    color: white;
    transition: transform 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.search-bar {
    margin: 20px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.versement-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.chart-container {
    position: relative;
    height: 400px;
    margin: 20px 0;
}

.error-message {
    color: #dc3545;
    font-size: 0.9em;
    margin-top: 5px;
}

.table-responsive {
    overflow-x: auto;
}

.table th {
    white-space: nowrap;
    font-size: 0.9em;
}

.table td {
    text-align: right;
    white-space: nowrap;
    font-size: 0.9em;
}

.table td:first-child {
    text-align: left;
    font-weight: bold;
}

.bg-light {
    background-color: #e9ecef !important;
}
