body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}
	
	

.highlight-green {
        background-color: #005814; /* Yeşil renk */
        color: white; /* Yazı rengini beyaz yap */
    }
    .popup-overlay2 {
        display: none; /* Başlangıçta gizli olmalı */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
    }
    .popup-content2 {
        background: white;
        padding: 20px;
        border-radius: 10px;
        width: 95%;
        text-align: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
		position: relative;
    }
    .close-btn2 {
    position: absolute;
    top: -33px;
    right: 0px;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    background-color: red;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 5px;
	 display: flex;
    align-items: center;
    justify-content: center;
    }
 
.hidden {
    display: none;
}

.highlight-green {
    background-color: #005814; /* Yeşil renk */
    color: white; /* İsteğe bağlı: yazı rengini beyaz yapabiliriz */
}

/* Kararma efekti */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup kutusu */
.popup {
    position: fixed;
	 border: 2px solid #28a745;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 1.3em;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

 

.datetime {
    display: inline-block;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.datetime .date,
.datetime .time,
.datetime .hijri-date {
    display: inline; /* Tarih, saat ve Hicri tarih yan yana */
    margin-right: 5px; /* Elemanlar arasında boşluk */
}

.datetime .separator {
    margin: 0 5px;
    color: #555;
}

footer {
    position: relative;
    z-index: 10;
    background-image: url(../img/suliet.png);
    background-size: cover;
    background-position: bottom;
    background-position-y: 0px;
    background-repeat: no-repeat;
    color: #323c6d;
    padding-top: 165px;
    text-align: center;
}

header {
    background-color: #1e5420;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.1rem;
    font-weight: 600;
}

#citySearch {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #007bff;
}

#cityList {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.city-item {
    cursor: pointer;
    padding: 10px;
    background-color: #ffffff;
    transition: background-color 0.3s;
}

.city-item:hover {
    background-color: #e9ecef;
}


#prayerTimes {
    margin-top: 40px;
}

table {
    width: 100%; /* Tablo genişliğini %100 yap */
    margin-top: -15px;
    
    overflow: hidden;
    background-color: #fff;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table th,
table td {
    text-align: center;
    padding: 9px;
    font-size: 1.2rem;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

table th {
     
    color: white;
    font-weight: 600;
     /* width: 50%;Başlık hücrelerinin genişliğini %50 yap */
}

table td:first-child {
    text-align: left;
  padding-left: 20px;
    border-right: 1px solid #ddd;
}

/* Son satırın alt kenarlığını kaldırma */
table tr:last-child td {
    border-bottom: none;
}

/* Mevcut vakit vurgulama */
.current-vakit {
    background-color: #005814;
}
#countdown {
    width: 100%;
    font-size: 1.2em;
    font-weight: 600;
    color: #007bff;
    margin-top: 20px;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


@media (max-width: 767px) {
    header h1 {
        font-size: 1.1rem;
        font-weight: 1000;
    }
    #countdown {
        font-size: 0.9rem;
    }
    #cityName {
        font-size: 1.2rem;
    }
    footer {
        padding-top: 50px;
    }
    .datetime {
        display: inline-block;
        font-size: 0.785rem;
        font-weight: bold;
        color: #333;
        text-align: center;
    }
}
