/* Dashboard Styles */
.dashboard-header {
    padding: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
    margin-bottom: 20px;
}

.dashboard-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

.stat-card h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 16px;
}

.stat-card .number {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.dashboard-content {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.dashboard-table th {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.dashboard-table tr:hover {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-card {
        min-width: 100%;
    }
    
    .dashboard-table {
        display: block;
        overflow-x: auto;
    }
}

.statistics .row {
    display: flex;
    flex-wrap: wrap;
}
.statistics .item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.statistics .white_card.p-3 {
    min-height: 110px;
    max-height: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.statistics .white_card.p-3 .btn {
    margin-top: 4px;
    padding: 2px 0;
    font-size: 1em;
}
.statistics .white_card.p-3 h2 {
    font-size: 1.5em;
    margin: 6px 0 2px 0;
}
