body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: linear-gradient(135deg, #061a14, #0f2e22, #071f18, #061a14);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* बैकग्राउंड में तैरते हुए ढेर सारे नए कमर्शियल आइकॉन्स */
.shop-bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.floating-shop-icon {
  position: absolute;
  color: rgba(255, 215, 0, 0.08); /* रिच गोल्डन ग्लो */
  animation: floatShopIcon linear infinite;
}

.floating-shop-icon:nth-child(1) {
  top: 5%;
  left: -10%;
  font-size: 70px;
  animation-duration: 20s;
  animation-delay: 0s;
}
.floating-shop-icon:nth-child(2) {
  top: 15%;
  left: -15%;
  font-size: 90px;
  animation-duration: 26s;
  animation-delay: 3s;
}
.floating-shop-icon:nth-child(3) {
  top: 25%;
  left: -12%;
  font-size: 60px;
  animation-duration: 22s;
  animation-delay: 1s;
}
.floating-shop-icon:nth-child(4) {
  top: 35%;
  left: -18%;
  font-size: 100px;
  animation-duration: 32s;
  animation-delay: 5s;
}
.floating-shop-icon:nth-child(5) {
  top: 45%;
  left: -10%;
  font-size: 85px;
  animation-duration: 24s;
  animation-delay: 2s;
}
.floating-shop-icon:nth-child(6) {
  top: 55%;
  left: -14%;
  font-size: 75px;
  animation-duration: 28s;
  animation-delay: 4s;
}
.floating-shop-icon:nth-child(7) {
  top: 65%;
  left: -10%;
  font-size: 95px;
  animation-duration: 25s;
  animation-delay: 1.5s;
}
.floating-shop-icon:nth-child(8) {
  top: 75%;
  left: -16%;
  font-size: 65px;
  animation-duration: 30s;
  animation-delay: 6s;
}
.floating-shop-icon:nth-child(9) {
  top: 85%;
  left: -10%;
  font-size: 110px;
  animation-duration: 35s;
  animation-delay: 3.5s;
}
.floating-shop-icon:nth-child(10) {
  top: 92%;
  left: -12%;
  font-size: 80px;
  animation-duration: 23s;
  animation-delay: 0.5s;
}

@keyframes floatShopIcon {
  0% {
    transform: translateX(-100px) translateY(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(110vw) translateY(-60px) rotate(360deg);
    opacity: 0;
  }
}

/* Glassmorphism Filter Card */
.muhurat-filter-card {
  background: rgba(15, 46, 34, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Select2 Custom Dark & Gold Styling */
.select2-container--default .select2-selection--single {
  background: rgba(6, 26, 20, 0.9) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 10px !important;
  height: 48px !important;
  display: flex;
  align-items: center;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff !important;
  font-size: 0.95rem;
  padding-left: 12px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 46px !important;
  right: 10px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #ffd700 transparent transparent transparent !important;
}
.select2-dropdown {
  background: #0f2e22 !important;
  border: 1px solid rgba(255, 215, 0, 0.4) !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8) !important;
  overflow: hidden;
  z-index: 99999;
}
.select2-search--dropdown .select2-search__field {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px !important;
  outline: none;
}
.select2-results__option {
  color: #f1f2f6 !important;
  padding: 10px 15px !important;
  font-size: 0.9rem;
  background: transparent !important;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(135deg, #27ae60, #f1c40f) !important;
  color: #000 !important;
  font-weight: 600;
}

/* Custom Datepicker Input Design */
.custom-date-input {
  background: rgba(6, 26, 20, 0.9) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
  border-radius: 10px !important;
  height: 48px !important;
  text-align: center;
}

/* Month Card Glassmorphism Design */
.month-card {
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 18px;
  background: rgba(15, 46, 34, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
}
.month-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 50px rgba(39, 174, 96, 0.25);
  border-color: rgba(39, 174, 96, 0.6);
}

.month-header {
  background: linear-gradient(
    135deg,
    rgba(39, 174, 96, 0.9),
    rgba(241, 196, 15, 0.9)
  );
  color: #000;
  padding: 16px 20px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.table-muhurat {
  color: #fff;
  margin-bottom: 0;
}
.table-muhurat th {
  background-color: rgba(6, 26, 20, 0.6);
  color: #ffd700;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  padding: 12px 8px;
}
.table-muhurat td {
  vertical-align: middle;
  font-size: 0.88rem;
  text-align: center;
  padding: 12px 8px;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f1f2f6;
}
.table-muhurat tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.badge-nakshatra {
  background: rgba(39, 174, 96, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(39, 174, 96, 0.4);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  font-size: 0.78rem;
}
.badge-time {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.4);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  font-size: 0.78rem;
}

.btn-search-glow {
  background: linear-gradient(45deg, #27ae60, #f1c40f);
  border: none;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
  height: 48px;
}
.btn-search-glow:hover {
  background: linear-gradient(45deg, #219653, #d4ac0d);
  box-shadow: 0 6px 25px rgba(39, 174, 96, 0.7);
  transform: translateY(-2px);
  color: #000;
}

.no-data-box {
  background: rgba(15, 46, 34, 0.5);
  backdrop-filter: blur(10px);
  color: #f1c40f;
  border: 2px dashed rgba(39, 174, 96, 0.4);
  border-radius: 18px;
  padding: 40px;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}
.live-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #2ecc71;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px #2ecc71;
  animation: pulse-animation 1.5s infinite;
}

h1,
h2,
h3,
h4,
label {
  color: #fff !important;
}
.breadcrumb > li > a {
  color: #f1c40f;
}
.breadcrumb > li {
  color: #fff;
}
