.abc-ajustes-seccion {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1e8ed;
    margin-bottom: 30px;
	max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.abc-ajustes-header h3 {
    margin: 0 0 5px 0;
    color: #00d2ff;
    font-size: 1.2rem;
}

.abc-privacidad-grid {
    margin-top: 20px;
}

.abc-privacidad-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f8fa;
}

.abc-privacidad-item:last-child {
    border-bottom: none;
}

.abc-privacidad-info strong {
    color: #333;
    font-size: 0.95rem;
}

.abc-select-privacidad {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.85rem;
    color: #495057;
}

#abc-msg-privacidad {
    font-size: 0.9rem;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.abc-ajustes-footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.abc-mision-edit-container {
    position: relative;
    margin-top: 15px;
}

#abc_mision_input {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    border: 1px solid #e1e8ed;
    padding: 15px;
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    resize: none;
    transition: border-color 0.3s ease;
}

#abc_mision_input:focus {
    border-color: #00d2ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
}

.abc-char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.abc-status-msg {
    font-size: 0.9rem;
    margin-left: 10px;
    display: none;
}

.abc-avatar-edit-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.abc-avatar-preview-container {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00d2ff;
    cursor: pointer;
}

#abc-avatar-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abc-avatar-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
}

.abc-avatar-preview-container:hover .abc-avatar-overlay {
    opacity: 1;
}

.abc-password-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 450px; /* Requisito de ancho */
    margin-top: 15px;
}

.abc-password-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.abc-password-field input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    transition: border-color 0.3s ease;
}

.abc-password-field input:focus {
    border-color: #00d2ff;
    outline: none;
}

.abc-pass-requirements {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    font-size: 14px;
}

.abc-pass-requirements li {
    margin-bottom: 4px;
    color: #999;
    transition: color 0.3s;
}

.abc-pass-requirements li::before {
    content: "✕ ";
    margin-right: 5px;
}

.abc-pass-requirements li.valid {
    color: #28a745;
}

.abc-pass-requirements li.valid::before {
    content: "✓ ";
}

/* Para pantallas pequeñas */
@media (max-width: 768px) {
    .abc-ajustes-seccion {
        width: calc(100% - 40px);
        padding: 20px;
    }
}