/* Container principal pour la face arrière */
.user-back-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
.user-header {
    text-align: center;
    margin-bottom: 24px;
}

.user-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Informations de l'utilisateur */
.user-info {
    flex: 1;
}

.user-info-item {
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(249, 250, 251, 0.8);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.user-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.user-info-value {
    font-size: 1rem;
    color: #1f2937;
    word-break: break-word;
}

.user-info-value.empty {
    color: #9ca3af;
    font-style: italic;
}

/* Boutons d'action */
.user-action-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 100;
    pointer-events: auto;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}
