/* 管理员页面样式 */

.admin-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.admin-section {
    margin-bottom: 2rem;
}

.admin-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.admin-card .card-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-weight: 600;
    border: none;
}

.admin-card .btn {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.admin-stats {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-item {
    text-align: center;
    padding: 1rem;
}

.admin-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2575fc;
    margin-bottom: 0.5rem;
}

.admin-stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
} 