﻿/* Font & Body Reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin:0;
}

    body.nv-locked {
        overflow: hidden;
    }

/* Header Temel */
.nv-header-shell {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 90px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 5px -5px #113238;
}

.nv-header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.nv-header-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Desktop Nav */
.nv-header-desktop-nav {
    display: flex;
    gap: 35px;
}

.nv-item {
    text-decoration: none;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

    .nv-item:hover, .nv-item.active {
        color: #1e5a67;
    }

/* Vakit Butonu */
.nv-btn-vakit {
    background: #1e5a67;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

    .nv-btn-vakit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(30, 90, 103, 0.15);
    }

/* Benzersiz Modern Burger */
.nv-burger-trigger {
    width: 32px;
    height: 32px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    z-index: 10001;
}

.nv-b-line {
    height: 2px;
    background: #1e5a67;
    border-radius: 4px;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.nv-b-top {
    width: 100%;
}

.nv-b-bottom {
    width: 60%;
}



/* Sadece Mobil İçin (992px altı) */
@media screen and (max-width: 992px) {
    .nv-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important; /* Airbnb Tarzı Temiz Beyaz */
        backdrop-filter: blur(20px) !important; /* Apple Tarzı Cam Efekti */
        z-index: 999999 !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        display: block !important;
    }

        /* Menü Açıkken */
        .nv-menu-overlay.open {
            opacity: 1 !important;
            visibility: visible !important;
        }

    .nv-menu-content {
        padding: 40px 30px !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        justify-content: flex-start !important;
    }

    /* Menü Üst Alan */
    .nv-menu-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 50px !important;
    }

    .nv-menu-logo-text {
        font-size: 22px !important;
        font-weight: 700 !important;
        letter-spacing: -1px !important;
        color: #1d1d1f !important; /* Apple Koyu Gri */
    }

    /* Airbnb Tarzı Kapat Butonu */
    .nv-menu-close {
        background: #f5f5f7 !important;
        border: none !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        font-size: 20px !important;
        color: #1d1d1f !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: 0.2s !important;
    }

        .nv-menu-close:active {
            transform: scale(0.9);
        }

    /* Menü Linkleri */
    .nv-menu-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items:center;
    }

    .nv-m-link {
        font-size: 20px !important; /* Büyük ve kurumsal yazı */
        font-weight: 600 !important;
        color: #1d1d1f !important;
        text-decoration: none !important;
        letter-spacing: -0.5px !important;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease forwards;
    }

    /* Menü açıldığında linklerin sırayla gelmesi */
    .nv-menu-overlay.open .nv-m-link {
        opacity: 1;
        transform: translateY(0);
    }

    /* Link gecikmeleri (Stagger efekti) */
    .nv-m-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nv-m-link:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nv-m-link:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nv-menu-footer {
        margin-top: auto !important;
        padding-top: 11px !important;
        margin-bottom: 54px;
        align-items: center;
        border-top: 1px solid #f2f2f2 !important;
        color: #86868b !important;
        font-size: 14px !important;
    }
    .nv-menu-footer p{
        text-align:center;
    }
    }

/* Masaüstünde Gizle */
@media screen and (min-width: 993px) {
    .nv-menu-overlay {
        display: none !important;
    }
}

.nv-m-link {
    font-size: 38px;
    font-weight: 800;
    color: #1e5a67;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.9);
    transition: 0.4s;
}

.nv-menu-overlay.open .nv-m-link {
    opacity: 1;
    transform: scale(1);
}

/* Link Delay (Sıralı açılış) */
.nv-m-link:nth-child(1) {
    transition-delay: 0.2s;
}

.nv-m-link:nth-child(2) {
    transition-delay: 0.3s;
}

.nv-m-link:nth-child(3) {
    transition-delay: 0.4s;
}

.nv-m-link:nth-child(4) {
    transition-delay: 0.5s;
}


.nv-meta-tag {
    font-weight: 700;
    color: #4db88b;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .nv-header-desktop-nav, .nv-btn-vakit {
        display: none;
    }

    .nv-burger-trigger {
        display: flex;
    }
}

/* Logo Kapsayıcı */
.nv-header-logo-anchor {
    display: inline-flex;
    align-items: center; /* Dış kapsayıcı dikeyde ortalar */
    text-decoration: none;
    gap: 12px;
    height: 100%;
}

    /* SVG Saat Stilleri */
   /* SVG Saat Stilleri */
.nv-svg-clock {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.nv-clock-face { fill: #f8fafc; stroke: #e2e8f0; stroke-width: 1.5; }
.nv-clock-center { fill: #1e5a67; z-index: 2; }

.nv-hour-hand, .nv-minute-hand {
    fill: #1e5a67;
    transform-origin: 24px 24px;
    /* transition-timing-function olarak linear kullanarak takılmasız dönmesini sağlıyoruz */
}

/* Animasyon Tanımları */

/* Akrep (Saat) - 12 saniyede bir tam tur (Yavaş) */
@keyframes spin-hour {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Yelkovan (Dakika) - 2 saniyede bir tam tur (Hızlı) */
@keyframes spin-minute {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Uygulama: infinite parametresi sürekli dönmesini sağlar */
.nv-hour-hand {
    animation: spin-hour 55s linear infinite;
}

.nv-minute-hand {
    animation: spin-minute 14s linear infinite;
}

    /* SVG Metin Stilleri */
.nv-logo-text-svg {
    font-size: 22px;
    font-weight: 600;
    fill: #1e5a67;
    letter-spacing: 0;
}
.nv-logo-tld-svg {
    font-size: 15px;
    font-weight: 500;
    fill: #4db88b;
    letter-spacing: -0.5px;
}
.nv-logo-group-svg {
    overflow: visible;
}
    .nv-logo-group-svg text {
        transition: fill 0.3s ease; /* Hover efekti için */
    }
    .nv-header-logo-anchor:hover .nv-logo-text-svg { fill: #2d8a9e; }
    .nv-header-logo-anchor:hover .nv-logo-tld-svg { fill: #5ccb9d; }
.nv-logo-text-svg, .nv-logo-tld-svg {
    dominant-baseline: central; /* Metni kendi satır yüksekliğinde tam ortalar */
    font-family: 'Inter', sans-serif;
}

    /* Responsive Logo Boyutları */
    @media (max-width: 768px) {
        .nv-svg-clock { width: 38px; height: 38px; }
        .nv-logo-text-svg { font-size: 18px; }
        .nv-logo-tld-svg { font-size: 12px; }
    }
.tk-namaz-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.tk-namaz-selection-row {
    background: linear-gradient(135deg, #1e5a67 0%, #0f2d33 100%);
    padding: 24px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 25px;
}

    .tk-namaz-selection-row .tk-container {
        display: flex;
        gap: 20px;
    }

.tk-namaz-select-container {
    flex: 1;
    min-width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

    .tk-namaz-select-container label {
        color: #94a3b8;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
    }

.tk-namaz-select {
    width: 100%;
    height: 48px;
    background-color: #f3f3f3;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    color: #2a2a2a;
    padding: 0 16px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    outline: none;
    box-sizing: border-box;
}

    .tk-namaz-select:focus {
        border-color: #38bdf8;
    }

    .tk-namaz-select:disabled {
        opacity: 0.6;
        background-color: #f1f1f1;
        border-style: dashed;
    }

@media (max-width: 992px) {
    .tk-namaz-select-container {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 991px) {
    .tk-namaz-selection-row {
        padding: 16px;
        margin-bottom:2px;
    }

        .tk-namaz-selection-row .tk-container {
            flex-direction: column;
            gap: 15px;
        }

    .tk-namaz-select-container {
        width: 100%;
        min-width: 100%;
    }
}

.tk-namaz-hero-card {
    background: linear-gradient(135deg, #1e5a67 0%, #0f2d33 100%);
    border-radius: 0;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 40px rgba(30, 90, 103, 0.2);
}

.tk-namaz-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.tk-namaz-miladi {
    font-size: 22px;
    font-weight: 800;
}

.tk-namaz-hicri {
    font-size: 15px;
    opacity: 0.6;
    margin-top: 4px;
}

.tk-namaz-location-text {
    font-weight: 700;
    color: #4db88b;
    background: rgba(77, 184, 139, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
}

.tk-namaz-main-timer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 0;
}

.tk-namaz-timer-item {
    text-align: center;
}

.tk-namaz-label {
    display: block;
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tk-namaz-time-val {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
}

.tk-namaz-green {
    color: #4db88b;
}

.tk-namaz-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

.tk-namaz-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.tk-namaz-v-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 10px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

    .tk-namaz-v-card.is-active {
        background: #4db88b;
        border-color: #4db88b;
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

.tk-v-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 5px;
}

.tk-v-time {
    font-size: 20px;
    font-weight: 800;
}

.tk-v-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #4db88b;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 900;
    display: none;
}

.tk-namaz-v-card.is-active .tk-v-badge {
    display: block;
}

.tk-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .tk-namaz-selection-row {
        flex-direction: column;
    }

    .tk-namaz-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tk-namaz-main-timer {
        flex-direction: column;
        gap: 10px;
    }
}
.tk-weekly-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
    margin-top: 25px;
    border: 1px solid #e2e8f0;
}

.tk-nav-tabs {
    display: flex;
    background: #fff; /* Çok Koyu Lacivert/Mavi */
    padding: 8px;
    border-radius: 12px 12px 0 0;
    gap: 5px;
}

.tk-tab-item {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none; /* Link olarak kullanım için */
}

    .tk-tab-item:hover {
        background: #f3f3f3;
    }

    .tk-tab-item.active {
        background: linear-gradient(135deg, #1e5a67 0%, #0f2d33 100%);
        color: #ffffff;
    }

.tk-tab-panel {
    display: none;
    padding: 20px;
}

    .tk-tab-panel.active {
        display: block;
    }

.tk-panel-header {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a; /* Koyu Mavi Başlık */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.tk-table-responsive {
    overflow-x: auto;
}

.tk-weekly-table {
    width: 100%;
    border-collapse: collapse;
}

    .tk-weekly-table th {
        background: #f8fafc;
        padding: 12px;
        text-align: left;
        font-size: 12px;
        text-transform: uppercase;
        color: #1e293b; /* Tablo başlıkları koyu mavi */
        border-bottom: 2px solid #e2e8f0;
    }

    .tk-weekly-table td {
        padding: 14px 12px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 14px;
        color: #334155;
    }

    .tk-weekly-table tr:hover {
        background: #f3f3f3;
    }

@media (max-width: 768px) {
    

    .tk-tab-item {
        text-align: left;
        padding-left: 20px;
    }
}

.tk-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    background: #f3f3f3;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e0f2fe;
}

.tk-page-nav {
    background: #0f172a; /* Koyu Mavi Navigasyon */
    color: white !important;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

    .tk-page-nav:hover {
        background: #1e5a67;
        transform: scale(1.1);
    }

.tk-month-display {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a; /* Koyu Mavi Ay Yazısı */
    min-width: 150px;
    text-align: center;
}
/* Aktif olan namaz vaktini belirginleştirir */
.active-vakit {
    background: #4db88b !important;
    border: 2px solid #4db88b !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

    .active-vakit .tk-namaz-time-val {
        color: #1e5a67 !important;
        font-weight: bold;
    }
@media only screen and (max-width:991px){
   
    .tk-namaz-v-card {
        padding: 10px 7px;
        border-radius: 18px;
    }
    .tk-namaz-hero-card {
        padding: 20px;
    }
    .tk-namaz-grid {
        gap: 8px;
    }
    .tk-namaz-main-timer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 15px 0;
    }
    .tk-namaz-time-val {
        font-size: 30px;
        font-weight: 900;
        letter-spacing: -1px;
    }
    .tk-namaz-divider {
        width: 1px;
        height: 10px;
        background: rgba(255, 255, 255, 0.1);
    }
    .nv-header-shell {
        height: 60px;
    }
    .tk-namaz-select-container label{
        display:none;
    }
    .tk-namaz-miladi {
        font-size: 17px;
        line-height:22px;
        font-weight: 700;
    }
}
@media only screen and (max-width:575px){
    .tk-namaz-top-bar {
        display: block;
        justify-content:center;
        text-align:center;
    }
    .tk-namaz-location-text {
        display: table;
        margin: 10px auto 0;
    }
}
.namazvakti-tatiller-wrapper {
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 15px;
}
.namazvakti-tabs-scroll-container {
    width: 100%;
    overflow: hidden; /* Dışarı taşan her şeyi gizle */
    margin: 20px 0;
}

/* Başlık ve Sekmeler */
.namazvakti-tatiller-hero {
    text-align: center;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

    .namazvakti-tatiller-hero h1 {
        font-size: 28px;
        color: #1a1a1a;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .namazvakti-tatiller-hero p {
        color: #666;
        font-size: 15px;
        margin-bottom: 25px;
    }

.namazvakti-tatiller-tabs {
    display: block; /* Flex yerine block kullanarak white-space kontrolü sağlıyoruz */
    white-space: nowrap; /* Butonların alt satıra geçmesini kesinlikle engeller */
    overflow-x: auto; /* Yatay kaydırmayı açar */
    overflow-y: hidden;
    padding: 15px 0;
    -webkit-overflow-scrolling: touch; /* Mobilde yağ gibi kayması için */
    text-align: center; /* Masaüstünde butonları ortalar */
    scrollbar-width: none; /* Firefox için scrollbar gizle */
}
    .namazvakti-tatiller-tabs::-webkit-scrollbar {
        display: none;
    }
.namazvakti-year-btn {
    flex: 0 0 auto;
    padding: 3px 20px;
    margin: 0 5px;
    white-space: nowrap;
    border: 2px solid #f0f0f0;
    background: #fff;
    border-radius: 50px;
    font-weight: bold;
    color: #555;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .namazvakti-year-btn.active {
        background: #1e5a67;
        color: #fff;
        border-color: #1e5a67;
        box-shadow: 0 4px 15px rgb(30 90 103 / 30%);
        transform: translateY(-2px);
    }

/* Timeline Çizgisi */
.namazvakti-tatiller-timeline {
    position: relative;
    padding-left: 60px;
    min-height: 200px;
}

    .namazvakti-tatiller-timeline::before {
        content: '';
        position: absolute;
        left: 25px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #eceef0;
    }

/* Tatil Maddesi */
.namazvakti-tatiller-item {
    position: relative;
    margin-bottom: 25px;
    opacity: 0;
}

.namazvakti-tatiller-dot {
    position: absolute;
    left: -43px;
    top: 18px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #ddd;
    z-index: 2;
}

.dot-resmi {
    border-color: #ff4757;
}

.dot-dini {
    border-color: #2ed573;
}

/* Kart İçeriği */
.namazvakti-tatiller-content {
    background: #fff;
    padding: 18px 25px;
    border-radius: 18px;
    border: 1px solid #f1f3f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: transform 0.2s ease;
}

    .namazvakti-tatiller-content:hover {
        transform: scale(1.01);
        border-color: #dee2e6;
    }

.namazvakti-tatiller-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.namazvakti-tatiller-date {
    text-align: center;
    min-width: 60px;
    border-right: 2px solid #f8f9fa;
    padding-right: 20px;
}

.namazvakti-tatiller-day {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #2d3436;
    line-height: 1;
}

.namazvakti-tatiller-month {
    font-size: 11px;
    text-transform: uppercase;
    color: #a2a8ad;
    font-weight: 700;
    margin-top: 5px;
}

.namazvakti-tatiller-titles h3 {
    margin: 0;
    font-size: 17px;
    color: #2d3436;
    font-weight: 700;
}

.namazvakti-tatiller-titles span {
    font-size: 13px;
    color: #747d8c;
}

/* Badge */
.namazvakti-tatiller-badge {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resmi-badge {
    background: #fff0f1;
    color: #ff4757;
}

.dini-badge {
    background: #f0fff4;
    color: #2ed573;
}

/* Animasyon */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .namazvakti-tatiller-tabs {
        justify-content: center;
        overflow-x: visible;
    }
    .namazvakti-tatiller-timeline {
        padding-left: 45px;
    }

        .namazvakti-tatiller-timeline::before {
            left: 15px;
        }

    .namazvakti-tatiller-dot {
        left: -38px;
    }

    .namazvakti-tatiller-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .namazvakti-tatiller-date {
        border: none;
        padding: 0;
        text-align: left;
        min-width: auto;
    }
}
.kible-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.kible-panel {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 220px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 10px;
    z-index: 1000;
    font-family: sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.kible-header {
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.kible-row {
    margin-bottom: 5px;
    font-size: 14px;
}

    .kible-row span {
        color: #d35400;
        font-weight: bold;
    }

.kible-note {
    font-size: 11px;
    color: #7f8c8d;
    margin-top: 10px;
    line-height: 1.3;
}
/* Kıble Oku Stili */
.kible-oku-icon {
    transition: transform 0.3s ease; /* Okun dönüşünü yumuşatır */
}

    /* Harita üzerinde okun daha belirgin olması için gölge */
    .kible-oku-icon img {
        filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.5));
    }
.search-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

.custom-search-box {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid #ddd;
}

#kibleSearchInput {
    flex: 1;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    font-size: 16px;
}

#kibleSearchBtn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

    #kibleSearchBtn:hover {
        background: #2ecc71;
    }

/* Leaflet'in kendi küçük arama butonunu gizleyelim ki karışmasın */
.leaflet-control-geocoder {
    display: none !important;
}
.suggestions-list {
    background: white;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    display: none; /* Başlangıçta gizli */
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    color: #333;
}

    .suggestion-item:hover {
        background-color: #f8f9fa;
        color: #27ae60;
    }

    .suggestion-item:last-child {
        border-bottom: none;
    }
    @media only screen and (max-width:1199px){

        .kible-panel {
            position: absolute;
            bottom: 85px;
            top: inherit;
            left: 15px;
            width: 130px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px;
            border-radius: 10px;
            z-index: 1000;
            font-family: sans-serif;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
    }
    @media only screen and (max-width:600px){
        .kible-header {
            font-size:15px;
        }
        .kible-note {
           display:none;
        }
        .leaflet-top {
            bottom: 0 !important;
            top:inherit !important;
        }
    }