
/* =====================================================
   DELETE ALL – MODAL CRÍTICO (ENTERPRISE UI)
===================================================== */

/* CONTENEDOR */
.delete-all-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 4px 2px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* -----------------------------------------------------
   ALERTA CRÍTICA
----------------------------------------------------- */
.delete-warning {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2a0f14, #3b1118);
  border: 1px solid rgba(255, 77, 79, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04),
              0 12px 24px rgba(0,0,0,0.35);
}

.delete-warning i {
  font-size: 38px;
  color: #ff4d4f;
  filter: drop-shadow(0 0 6px rgba(255,77,79,.4));
}

.delete-warning h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.delete-warning p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #ffd6d6;
  opacity: .95;
}

/* -----------------------------------------------------
   PASSWORD FIELD
----------------------------------------------------- */
.delete-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #cfcfcf;
  letter-spacing: .3px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9b9b9b;
  font-size: 18px;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border-radius: 14px;
  border: 1px solid #2f2f2f;
  background: linear-gradient(180deg, #121212, #0f0f0f);
  color: #fff;
  font-size: 15px;
  transition: all .25s ease;
}

.input-wrapper input::placeholder {
  color: #777;
  letter-spacing: 2px;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #ff4d4f;
  box-shadow: 0 0 0 4px rgba(255,77,79,.18);
}

/* -----------------------------------------------------
   CHECKBOX CUSTOM CRÍTICO
----------------------------------------------------- */
.delete-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e4e4e4;
  cursor: pointer;
  user-select: none;
}

.delete-checkbox input {
  display: none;
}

.delete-checkbox .checkmark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #151515;
  border: 2px solid #444;
  position: relative;
  transition: all .25s ease;
}

.delete-checkbox:hover .checkmark {
  border-color: #ff4d4f;
}

.delete-checkbox input:checked + .checkmark {
  background: linear-gradient(135deg, #ff4d4f, #c62828);
  border-color: #ff4d4f;
  box-shadow: 0 0 0 4px rgba(255,77,79,.25);
}

.delete-checkbox .checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.delete-checkbox input:checked + .checkmark::after {
  opacity: 1;
}

/* -----------------------------------------------------
   BOTÓN ELIMINAR
----------------------------------------------------- */
.btn-danger {
  background: linear-gradient(135deg, #ff4d4f, #c62828);
  border: none;
  color: #fff;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-danger:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-danger:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255,77,79,.35);
}

.btn-danger:not(:disabled):active {
  transform: scale(.98);
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 480px) {
  .delete-warning {
    flex-direction: column;
    text-align: center;
  }

  .delete-warning i {
    font-size: 32px;
  }
}
