/* User System Premium Styles */
:root {
    --primary-color: #e37c7d; /* Matching site pink/rose */
    --secondary-color: #333;
    --bg-light: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 40px 20px;
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
}

.auth-title {
    font-family: 'Libre Caslon Display', serif;
    color: var(--secondary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.form-floating > label {
    color: #999;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(227, 124, 125, 0.25);
}

.btn-premium {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-premium:hover {
    background: #d66566;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(227, 124, 125, 0.4);
}

/* Dashboard Styles */
.dashboard-container {
    background-color: var(--bg-light);
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 60px;
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Libre Caslon Display', serif;
}

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

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
}

/* Sidebar Navigation */
.sidebar-link {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: #fff5f5;
    color: var(--primary-color);
}

.sidebar-link i {
    width: 25px;
}
