/* style.css */
#ramadanScheduleWrapper {
  background: url(https://cdn.ideaktiv.com/2025/03/Bg-Ramadan-2025.jpg.webp);
  font-family: "Poppins", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Align everything in a column */
}

.title {
  font-size: 15px;
  font-weight: 900;
  margin-top: 3px;
  margin-bottom: 5px;
}

.container {
  display: flex;
  flex-direction: row; /* Align everything in a row */
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  padding: 0px;
}

.dropdowns {
  display: flex;
  gap: 10px;
}

select {
  width: 150px;
  background: #11294a;
  color: white;
  padding: 2px;
  border: 2px solid #e2b243;
  border-radius: 5px;
  font-size: 13px !important;
  text-align: center;
}

#scheduleResult {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0px;
  border-radius: 10px;
  text-align: center;
}

#resultHijriah {
  font-size: 13px;
  font-weight: bold;
  color: #e2b243;
  margin-right: 15px;
}

.timing {
  display: flex;
  align-items: left;
  gap: 20px;
}

.column {
  display: flex;
  align-items: center;
  gap: 5px;
}

.column img {
  width: 50px;
}

.column p {
  font-size: 13px;
  font-weight: bold;
  color: #e2b243;
  margin: 0;
}

.column span {
  font-size: 13px;
}

.iconwid {
  width: 40px !important;
  height: auto;
}

.notifier {
  margin-top: -10px;
  padding-right: 630px;
}

.sponsor {
  margin-top: -8px;
  margin-bottom: 2px;
  text-align: center !important;
  display: flex;
  align-items: center; /* Align text and images vertically */
  gap: 5px; /* Adds spacing between elements */
}

.sponsor-text {
  font-size: 13px;
  color: white;
  /* letter-spacing: 0.077em;
        white-space: nowrap; /* Prevents text from wrapping */
}

.sponsor img {
  vertical-align: center; /* Ensures images align properly */
}

/* Make sure nothing changes on mobile */
@media (max-width: 1120px) {
  .container {
    justify-content: center;
    gap: 10px;
    padding: 5px;
  }

  .dropdowns {
    flex-direction: column;
    align-items: center;
  }

  select {
    width: 200px;
    font-size: 12px !important;
  }

  .timing {
    flex-direction: column;
    gap: 0px;
  }

  .icon {
    width: 35px !important;
    height: auto;
  }

  .notifier {
    margin-top: -13px;
    padding-right: 0px;
  }

  .sponsor {
    margin-top: 10px;
    text-align: center !important;
  }

  select {
    width: 145px;
  }
}
