/* Nöbetçi Eczaneler Sayfası */
.pharmacy-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    padding: 0 0 40px;
}

.pharmacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.pharmacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #fff;
}

.pharmacy-header h1 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.header-right {
    font-size: 14px;
}

/* Üst Kart - Vakitler Stili */
.pharmacy-top-card {
    background: linear-gradient(180deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 0;
    padding: 15px 20px;
    margin-bottom: 0;
}

.pharmacy-info-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box.city-select-box {
    flex: 2;
    background: rgba(255,255,255,0.15);
}

.info-box.stat {
    background: rgba(255,255,255,0.1);
}

.info-icon {
    font-size: 24px;
}

.info-content {
    text-align: left;
}

.info-label {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.info-box select {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    min-width: 180px;
    cursor: pointer;
    background: #fff;
}



/* Liste Kartı */
.pharmacy-list-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
}

/* iframe Container */
.iframe-container {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.iframe-container iframe {
    width: 100%;
    border: none;
    display: block;
    background: #fff;
}

/* Bilgilendirme Notu */
.pharmacy-info-note {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
    color: #fff;
}

.pharmacy-info-note p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .pharmacy-header h1 {
        font-size: 18px;
    }

    .pharmacy-info-row {
        flex-wrap: wrap;
    }

    .info-box {
        flex: 1 1 45%;
    }

    .info-box.city-select-box {
        flex: 1 1 100%;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .pharmacy-header {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .pharmacy-info-row {
        flex-direction: column;
    }

    .info-box {
        width: 100%;
        justify-content: center;
    }

    .info-box.city-select-box {
        width: 100%;
    }

    .info-box select {
        flex: 1;
        min-width: 150px;
        width: 100%;
    }

    .list-header {
        padding: 12px 15px;
    }

    .list-header h2 {
        font-size: 14px;
    }

    .iframe-container iframe {
        height: 1800px;
    }

    .pharmacy-top-card {
        padding: 12px 15px;
    }
}

/* Responsive - Küçük Mobil */
@media (max-width: 480px) {
    .pharmacy-page {
        padding: 0 0 20px;
    }

    .pharmacy-container {
        padding: 0 10px;
    }

    .pharmacy-header h1 {
        font-size: 15px;
    }

    .header-right {
        font-size: 12px;
    }

    .info-box {
        padding: 10px;
        gap: 8px;
    }

    .info-icon {
        font-size: 18px;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 13px;
    }

    .info-box select {
        padding: 6px 10px;
        font-size: 13px;
    }

    .list-header h2 {
        font-size: 13px;
    }

    .iframe-container iframe {
        height: 1500px;
    }

    .pharmacy-info-note {
        padding: 10px 12px;
        margin-top: 15px;
    }

    .pharmacy-info-note p {
        font-size: 11px;
    }
}

