﻿.dashboard-container {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

    .header h1 {
        color: #495057;
        font-size: 2rem;
    }

.status-badge {
    background: #e9ecef;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-left: 10px;
}

.controls {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-body {
    text-align: center;
}

.card-title {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #495057;
    margin: 0;
}

.events-section h3 {
    margin-bottom: 15px;
    color: #495057;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
}

/* Status colors */
.status-success {
    color: #28a745;
}

.status-error {
    color: #dc3545;
}

.status-warning {
    color: #ffc107;
}

.status-info {
    color: #17a2b8;
}
