/* ========== ESTILOS ZONA DE CLIENTE ========== */
.client-zone {
    padding: 80px 0;
    background-color: white;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-title {
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.client-dashboard {
    display: none;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--color-light);
    border-radius: 8px;
}

.welcome-message {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.logout-btn {
    background-color: #e53e3e;
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.logout-btn:hover {
    background-color: #c53030;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.dashboard-card h3 i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.documents-list {
    list-style: none;
}

.documents-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.documents-list li:last-child {
    border-bottom: none;
}

.download-btn {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.download-btn:hover {
    color: var(--color-accent);
}

.badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: white;
}

/* Responsive para zona de cliente */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .login-form {
        padding: 20px;
    }
}
/* ========== FIN ESTILOS ZONA DE CLIENTE ========== */