/* Dış container: sadece spacing, arka plan yok */
    #nearest-availability.nearest-availability {
        margin: 20px 0 24px 0;
    }

    /* Üst satır: label + tarih pill yanyana */
    .nearest-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .nearest-label {
        font-size: 18px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 600;
        color: #5f3fd9; /* mor ton, ama arka plan değil */
        white-space: nowrap;
    }

    /* Tarih için mor pill */
    #nearest-date-label {
        display: inline-block;
        padding: 6px 22px;
        border-radius: 5px;
        background: linear-gradient(90deg, #4a2aa5 0%, #7c46e6 100%);
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.04em;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        white-space: nowrap;
    }

    /* Alt blok: beyaz kart zemininde saatler */
    #nearest-times {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 5px;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* Saat butonları – beyaz pill, mor border/yazı */
    #nearest-times .nearest-time-btn {
        border-radius: 5px;
        border: 1px solid #5f3fd9;
        background-color: #ffffff;
        color: #5f3fd9;
        padding: 4px 14px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
        text-transform: none;
        letter-spacing: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
        transition:
            background-color 0.15s ease,
            color 0.15s ease,
            box-shadow 0.15s ease,
            transform 0.08s ease;
    }

    #nearest-times .nearest-time-btn:hover {
        background-color: #f5f1ff;
        color: #4a2aa5;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
        transform: translateY(-1px);
    }

    /* Seçili saat: dolu mor pill */
    #nearest-times .nearest-time-btn.is-active {
        background-color: #5f3fd9;
        color: #ffffff!important;
        border-color: #5f3fd9;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    }

    /* Bootstrap btn-outline-primary etkisini bu alanda bastıralım */
    #nearest-times .nearest-time-btn.btn-outline-primary {
        border-color: #5f3fd9;
        color: #5f3fd9;
    }

    /* Mobil uyum */
    @media (max-width: 768px) {
        .nearest-header {
            flex-wrap: wrap;
            row-gap: 6px;
        }

        #nearest-date-label {
            padding: 6px 18px;
            font-size: 14px;
        }

        #nearest-times {
            margin-top: 4px;
        }

        #nearest-times .nearest-time-btn {
            padding: 4px 12px;
            font-size: 12px;
        }
    }