body {
  font-family: "Tajawal", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e1e2f, #2a2a3d);
  color: white;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

#locationSearch {
  width: 100%;
  max-width: 400px;
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  outline: none;
  transition: box-shadow 0.3s ease;
}

#locationSearch:focus {
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
}

.suggestions-list {
  max-width: 400px;
  margin: 0.3rem auto 0;
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  max-height: 250px;
  overflow-y: auto;
  text-align: right;
  font-weight: bold;
  font-size: 1.1rem;
  z-index: 10;
  position: relative;
}

.suggestions-list div {
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #ddd;
}

.suggestions-list div:hover {
  background-color: #ffd700;
  color: #000;
  font-weight: 900;
}

#dateInput {
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  outline: none;
  transition: box-shadow 0.3s ease;
  max-width: 200px;
  direction: ltr;
}

#dateInput:focus {
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
}

.prayer-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.card h2 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1.3rem;
  color: #fff;
}
