.stats-title{
    margin-top:40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:10px;
}

.stats-card{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.stats-table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
}

.stats-table th{
    text-align:left;
    padding:6px;
    border-bottom:2px solid #eee;
}

.stats-table td{
    padding:6px;
}

.total-row{
    font-weight:bold;
}

.progress-bar{
    height:8px;
    border-radius:4px;
    background:#eee;
    margin-top:4px;
}

.progress-fill{
    height:100%;
    border-radius:4px;
}

.message-success{
    background:#d4edda;
    color:#155724;
    padding:10px;
    border-radius:6px;
    margin-bottom:10px;
}

.message-error{
    background:#f8d7da;
    color:#721c24;
    padding:10px;
    border-radius:6px;
    margin-bottom:10px;
}

.fc-daygrid-event {
    overflow: hidden !important;
    white-space: nowrap !important;
}
.fc-daygrid-event-harness {
    overflow: hidden !important;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
