/* === GLASS STYLE BASE === */
.glass-style {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* === BACKGROUNDS ESPECÍFICOS === */
.glass-style.default-bg {
    background: rgba(255, 255, 255, 0.07) !important;
}

.glass-style.modal-bg {
    background: #1e1e2f !important;
}

.glass-style.swal-bg {
    background: rgba(30, 30, 47, 0.75) !important;
}

/* === SWAL2 SPECIFIC === */
.swal2-popup.glass-popup {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(30, 30, 47, 0.75) !important;
    /* similar seu modal-content */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    color: white !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.swal2-popup.glass-popup .swal2-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white !important;
}

.swal2-popup.glass-popup .swal2-content {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #b0f7e7 !important;
}

/* === MODAL SPECIFIC === */
.modal-content {
    background: #1e1e2f;
    border-radius: 12px;
    padding: 30px 35px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-content p,
.modal-content label {
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-content label {
    margin-bottom: 10px;
    color: #b0f7e7;
    text-align: left;
}

/* === BUTTON BASE === */
.btn-base {
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    color: white !important;
    cursor: pointer;
    border: none;
    margin: 5px;
}

/* Confirm / Cancel VARIANTS */
.btn-confirm {
  background: linear-gradient(135deg, #3a6b1a, #6ca330) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 6px rgba(58, 107, 26, 0.5);
  transition: background-color 0.3s ease;
}

.btn-confirm:hover {
  background: linear-gradient(135deg, #2e5614, #5a8b24) !important;
}

.btn-cancel {
  background: linear-gradient(135deg, #b71c1c, #d65a5a) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 10px rgba(183, 28, 28, 0.7);
  transition: background-color 0.3s ease;
}

.btn-cancel:hover {
  background: linear-gradient(135deg, #7a1212, #b44141) !important;
}
