:root {
  --navy: #1a2340;
  --maroon: #5e0c0c;
  --gold: #d4af37;
  --cream: #f5e6c8;
  --card: transparent;
  --highlight: transparent;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--maroon);
  background: var(--cream);
  min-height: 100vh;
}

.kamal-header {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.kamal-header img {
  width: 100%;
  height: auto;
  display: block;
}

.shlok-below {
  margin: 0;
  padding: 6px 16px 10px;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(94, 12, 12, 0.22);
}

.app {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

.card {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: none;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input[type="search"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(94, 12, 12, 0.25);
  border-radius: 12px;
  font-size: 1rem;
}

.suggestions {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border: 1px solid rgba(94, 12, 12, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
}

.suggestions li {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
}

.suggestions li:hover { background: rgba(255, 243, 214, 0.5); }

.suggestions .type {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
}

.hidden { display: none !important; }

.hint { font-size: 0.8rem; opacity: 0.7; margin: 0 0 8px; }
.raga-status { font-weight: 700; margin: 0 0 10px; }

.btn-row, .date-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.date-row { justify-content: space-between; }
.date-center { text-align: center; flex: 1; }
.date-label { font-weight: 700; font-size: 1.05rem; }

.btn {
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--maroon);
  color: var(--maroon);
}

.btn-link {
  background: none;
  border: none;
  color: var(--maroon);
  text-decoration: underline;
  cursor: pointer;
}

.city-name { color: var(--gold); font-weight: 700; margin: 0 0 10px; }

.sun-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sun-grid span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.65;
}

.sun-grid strong { font-size: 1.1rem; }

.section-title {
  color: var(--maroon);
  margin: 8px 0 10px 4px;
}

.prahar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.prahar-row.current {
  background: transparent;
  border-color: var(--gold);
}

.prahar-row .meta { font-size: 0.78rem; opacity: 0.65; }
.prahar-row .time { font-weight: 600; white-space: nowrap; }

.current-prahar {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.current-time { margin: 6px 0 0; }
