/* Location Dropdown için Stiller */
.prayer-times-header { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; margin-bottom: 20px; border-bottom: 1px solid #e5e5e5; position: relative; }
.location-selection { display: flex; gap: 10px; order: 1; flex: 1; }
.location-dropdown { padding: 8px 12px; border-radius: 5px; border: 1px solid #ddd; background-color: #fff; font-weight: 600; color: #145f34; cursor: pointer; transition: all 0.3s ease; }
.location-dropdown:hover { border-color: #145f34; }
.location-dropdown:focus { outline: none; border-color: #145f34; box-shadow: 0 0 0 2px rgba(20, 95, 52, 0.2); }
.location-display { display: flex; align-items: center; font-size: 1.2rem; font-weight: 700; color: #145f34; position: absolute; left: 50%; transform: translateX(-50%); }
.location-display i { margin-right: 8px; color: #d43e3e; }
.current-date { font-size: 0.9rem; color: #666; text-align: right; order: 3; flex: 1; }
.imsak-countdown { margin: 30px 0; text-align: center; }
.countdown-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: #145f34; text-transform: uppercase; text-align: center; position: relative; padding-bottom: 15px; font-family: "Roboto", sans-serif; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
.countdown-title:after { content: ''; position: absolute; width: 80px; height: 3px; background-color: #145f34; bottom: 0; left: 50%; transform: translateX(-50%); }
.countdown-timer { display: flex; justify-content: center; gap: 20px; }
.timer-item { background-color: #f3f7f4; border-radius: 10px; padding: 15px 25px; min-width: 100px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.timer-value { font-size: 2.5rem; font-weight: 700; color: #145f34; }
.timer-label { font-size: 0.8rem; color: #666; margin-top: 5px; }
.prayer-times-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin: 30px 0; }
.prayer-time-item { background-color: #f8f9fa; border-radius: 8px; padding: 20px 15px; text-align: center; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; }
.prayer-time-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.prayer-icon { font-size: 1.5rem; margin-bottom: 10px; color: #145f34; }
.prayer-name { font-size: 1rem; font-weight: 600; margin-bottom: 5px; color: #333; }
.prayer-value { font-size: 1.5rem; font-weight: 700; color: #145f34; }
.prayer-time-item.active { background-color: #e8f5e9; border-bottom: 3px solid #145f34; border-left: none; border-right: none; }
.prayer-time-item.next { border-bottom: 3px solid #e74c3c; border-left: none; border-right: none; }
body.dark .location-dropdown { background-color: #2a2d33; border-color: #3e4452; color: #19b069; }
body.dark .location-dropdown:hover, body.dark .location-dropdown:focus { border-color: #19b069; box-shadow: 0 0 0 2px rgba(25, 176, 105, 0.2); }
body.dark .location-display { color: #19b069; }
body.dark .current-date { color: #a0a0a0; }
body.dark .countdown-title { color: #19b069; }
body.dark .timer-item { background-color: #2a2d33; }
body.dark .timer-value { color: #19b069; }
body.dark .timer-label { color: #a0a0a0; }
body.dark .prayer-time-item { background-color: #2a2d33; }
body.dark .prayer-icon { color: #19b069; }
body.dark .prayer-name { color: #e1e1e1; }
body.dark .prayer-value { color: #19b069; }
body.dark .prayer-time-item.imsak, body.dark .prayer-time-item.yatsi { background-color: #233028; border-bottom-color: #19b069; }

/* Responsive Tasarım için Medya Sorguları */
@media (max-width: 1000px) { .prayer-times-grid { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 768px) {
.prayer-times-header { flex-direction: column; align-items: center; text-align: center; flex-wrap: wrap; }
.location-display { width: 100%; text-align: center; position: static; transform: none; justify-content: center; margin-bottom: 10px; order: 1; }
.current-date { width: 100%; text-align: center; margin-top: 0; margin-bottom: 15px; order: 2; }
.location-selection { width: 100%; justify-content: center; flex-wrap: wrap; margin-bottom: 15px; order: 3; padding: 0 15px; gap: 8px; }
.location-dropdown { flex: 1; min-width: 0; width: calc(50% - 4px); }
.countdown-timer { gap: 10px; }
.timer-item { min-width: 80px; padding: 10px 15px; }
.timer-value { font-size: 2rem; }
.countdown-title { font-size: 1.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
}

@media (max-width: 576px) {
.prayer-times-grid { gap: 8px; }
.prayer-time-item { padding: 10px 8px; min-height: 80px; display: flex; flex-direction: column; justify-content: center; }
.prayer-icon { font-size: 1.2rem; margin-bottom: 5px; }
.prayer-name { font-size: 0.85rem; margin-bottom: 2px; }
.prayer-value { font-size: 1.2rem; }
.location-dropdown { padding: 6px 8px; font-size: 0.9rem; }
.location-display { font-size: 1.1rem; }
.current-date { font-size: 0.8rem; }
.countdown-title { font-size: 1.2rem; }
}

@media (max-width: 400px) {
.location-selection { gap: 5px; }
.location-dropdown { flex: 1; min-width: 0; font-size: 0.85rem; padding: 5px 6px; }
.timer-item { min-width: 70px; padding: 8px 12px; }
.timer-value { font-size: 1.8rem; }
}
