/*
 * Best Soft Company
 * https://bestsoftcompany.com | info@bestsoftcompany.com
 */

/* Best Soft demo alert popup styling */
.demo-swal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(3, 14, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: bsDemoFadeIn 0.15s ease-out;
}
@keyframes bsDemoFadeIn { from { opacity: 0; } to { opacity: 1; } }
.demo-swal-popup {
  background: #fff;
  border-radius: 14px !important;
  padding: 2rem 1.75rem !important;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.demo-alert-body { text-align: center; padding: 0.5rem 0; }
.demo-alert-badge {
  display: inline-block;
  background: #FF6B00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.demo-alert-title { font-size: 18px; font-weight: 600; color: #030E0F; margin: 8px 0; }
.demo-alert-text { font-size: 14px; color: #7E7E7E; line-height: 1.6; margin: 0; }
.demo-alert-btn {
  margin-top: 18px;
  background: #FF6B00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.demo-alert-btn:hover { background: #e05f00; }

/* Hide language switcher (English-only site) */
.main-menu ul > li:has(> a.plus),
.mobile-header .mobile-right > a.user-icon,
.mobile-header .mobile-right > ul.dropdown-menu {
  display: none !important;
}
