
:root {
    --primary-color: #0066cc;
    --primary-light: #e6f2ff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}
.dashboard-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: none;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card-header-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004499 100%);
    color: white;
    padding: 1.5rem;
    border: none;
}
.card-header-custom h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.card-body-custom {
    padding: 2rem;
}
.info-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}
.info-label {
    font-weight: 600;
    color: var(--secondary-color);
    min-width: 120px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-value {
    color: #333;
    font-weight: 500;
}
.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
}
.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
}
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004499 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    color: white;
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #004499 0%, var(--primary-color) 100%);
}
.member-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.download-list {
    list-style: none;
    padding: 0;
}
.download-item {
    background: var(--light-bg);
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
}
.download-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: #333;
    gap: 0.75rem;
}
.download-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}
.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}
.stat-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}
