/* Client-specific styles for login and other client pages */

.auth-body {
    background: url('/assets/img/login-background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-container {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Client Navigation */
.client-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f5a0;
}

.nav-brand i {
    color: #00d4ff;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.nav-link.active {
    background: linear-gradient(135deg, #00f5a0 0%, #00d4ff 100%);
    color: #fff;
}

.nav-link.logout:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

/* Client Container */
.client-container {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Dashboard Styles */
.progress-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.progress-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.progress-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.progress-card-header i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.progress-card h3 {
    color: #00f5a0;
    margin: 0;
    font-size: 1.25rem;
}

.chart-container {
    position: relative;
    height: 300px;
    margin: 1rem 0;
}

.goal-progress {
    margin: 1rem 0;
}

.goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.goal-label {
    font-weight: 600;
    color: #e0e0e0;
}

.goal-value {
    color: #00f5a0;
    font-weight: 700;
}

.goal-percentage {
    color: #00d4ff;
    font-size: 0.9rem;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #00f5a0 0%, #00d4ff 100%);
    color: #fff;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .client-container {
        padding: 1rem;
        margin-top: 70px;
    }

    .progress-dashboard {
        grid-template-columns: 1fr;
    }

    .progress-card {
        padding: 1rem;
    }
}