:root {
    --azul-noche: #0D1B2A;
    --dorado-elite: #D4AF37;
    --blanco-espectral: #F0F0F0;
    --gris-neutro: #495057;
    --rojo-peligro: #DC3545;
}

.deletion-section {
    padding: 80px 0;
    background-color: var(--azul-noche);
    min-height: 80vh;
}

.deletion-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.deletion-header {
    text-align: center;
    margin-bottom: 40px;
}

.deletion-header h1 {
    font-size: 2.5rem;
    color: var(--blanco-espectral);
    margin-bottom: 15px;
}

.deletion-header p {
    color: rgba(240, 240, 240, 0.8);
    font-size: 1.1rem;
}

.deletion-form {
    background-color: #1A2A3A;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--dorado-elite);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input, 
.form-textarea {
    padding: 12px 16px;
    background: rgba(13, 27, 42, 0.6);
    border: 1px solid var(--gris-neutro);
    border-radius: 8px;
    color: var(--blanco-espectral);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--dorado-elite);
    background: rgba(13, 27, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(220, 53, 69, 0.1); /* Subtle red tint for warning */
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.checkbox-input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--dorado-elite);
}

.checkbox-label {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.9);
    line-height: 1.4;
    cursor: pointer;
}

.btn-delete {
    width: 100%;
    padding: 15px;
    background-color: var(--dorado-elite);
    color: var(--azul-noche);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    background-color: #E6C547;
}

.btn-delete:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.field-error {
    border-color: var(--rojo-peligro) !important;
}

.error-msg {
    color: var(--rojo-peligro);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Success Modal Specifics */
.success-icon-container {
    margin-bottom: 20px;
    color: var(--dorado-elite);
    font-size: 4rem;
    animation: scaleIn 0.5s ease;
}

.data-summary {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.9rem;
    border-left: 3px solid var(--dorado-elite);
}

.data-row {
    margin-bottom: 8px;
    word-break: break-all;
}

.data-label {
    font-weight: 600;
    color: var(--dorado-elite);
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
    .deletion-form {
        padding: 25px 20px;
    }
    
    .deletion-header h1 {
        font-size: 1.8rem;
    }
}
