
.admin-header {
    background: linear-gradient(135deg, #fff5ef 0%, #fffbf8 100%);
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.admin-title {
    font-size: 32px;
    font-weight: 700;
    color: #5c3d2e;
    margin-bottom: 8px;
}

.admin-subtitle {
    color: #c9aa98;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 171, 185, 0.15);
}

.stat-icon {
    font-size: 48px;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #FFABB9;
}

.stat-label {
    color: #c9aa98;
    font-size: 14px;
}

.stat-link {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 12px;
    color: #c4816e;
    text-decoration: none;
}

.quick-actions {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-actions h3 {
    color: #5c3d2e;
    margin-bottom: 20px;
    font-size: 18px;
}

.actions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.action-btn {
    padding: 12px 25px;
    background: #fff5ef;
    color: #c4816e;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #FFABB9;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
