body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* विवाह और मांगलिक कार्यों से मेल खाता रॉयल मैरून, रोज़ गोल्ड और डीप नाईट ग्रेडिएंट */
  background: linear-gradient(135deg, #1a0912, #2c1223, #15091a, #1a0912);
  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%;
  }
}

/* बैकग्राउंड में तैरते हुए वेडिंग आइकॉन्स (Rings, Hearts, Kalash) एनिमेशन */
.wedding-bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.floating-wedding-icon {
  position: absolute;
  color: rgba(255, 192, 203, 0.06); /* हल्का सॉफ्ट पिंक/रोज़ गोल्ड ग्लो */
  animation: floatIcon linear infinite;
}

.floating-wedding-icon:nth-child(1) {
  top: 10%;
  left: -10%;
  font-size: 75px;
  animation-duration: 24s;
}
.floating-wedding-icon:nth-child(2) {
  top: 40%;
  left: -15%;
  font-size: 105px;
  animation-duration: 32s;
  animation-delay: 4s;
}
.floating-wedding-icon:nth-child(3) {
  top: 70%;
  left: -10%;
  font-size: 85px;
  animation-duration: 26s;
  animation-delay: 2s;
}
.floating-wedding-icon:nth-child(4) {
  top: 60%;
  right: -10%;
  font-size: 95px;
  animation-duration: 29s;
  animation-delay: 6s;
}

@keyframes floatIcon {
  0% {
    transform: translateX(-100px) translateY(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(110vw) translateY(-50px) rotate(360deg);
    opacity: 0;
  }
}

/* Glassmorphism Filter Card */
.muhurat-filter-card {
  background: rgba(44, 18, 35, 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(26, 9, 18, 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: #2c1223 !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, #e91e63, #ff9800) !important;
  color: #fff !important;
  font-weight: 600;
}

/* Month Card Glassmorphism Design */
.month-card {
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 18px;
  background: rgba(44, 18, 35, 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(233, 30, 99, 0.25);
  border-color: rgba(233, 30, 99, 0.6);
}

/* Animated Glowing Header */
.month-header {
  background: linear-gradient(
    135deg,
    rgba(233, 30, 99, 0.9),
    rgba(255, 152, 0, 0.9)
  );
  color: #fff;
  padding: 16px 20px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Tables */
.table-muhurat {
  color: #fff;
  margin-bottom: 0;
}
.table-muhurat th {
  background-color: rgba(26, 9, 18, 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 {
  transition: background 0.3s ease;
}
.table-muhurat tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Badges */
.badge-nakshatra {
  background: rgba(233, 30, 99, 0.2);
  color: #ff80ab;
  border: 1px solid rgba(233, 30, 99, 0.4);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  font-size: 0.78rem;
}
.badge-time {
  background: rgba(255, 152, 0, 0.2);
  color: #ffb74d;
  border: 1px solid rgba(255, 152, 0, 0.4);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  font-size: 0.78rem;
}

/* Glowing Search Button */
.btn-search-glow {
  background: linear-gradient(45deg, #e91e63, #ff9800);
  border: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
  height: 48px;
}
.btn-search-glow:hover {
  background: linear-gradient(45deg, #d81b60, #fb8c00);
  box-shadow: 0 6px 25px rgba(233, 30, 99, 0.7);
  transform: translateY(-2px);
  color: #fff;
}

/* No Data Box */
.no-data-box {
  background: rgba(44, 18, 35, 0.5);
  backdrop-filter: blur(10px);
  color: #ff80ab;
  border: 2px dashed rgba(233, 30, 99, 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);
}

/* Live Pulse Indicator */
@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: #ffb74d;
}
.breadcrumb > li {
  color: #fff;
}

.custom-date-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
  border-radius: 10px !important;
  height: 48px !important;
  text-align: center;
}
.custom-date-input::placeholder {
  color: #aaa;
}
