/* ======================================
   FESTE TERMINBUCHUNG RECHTS
====================================== */

.fixed-booking-buttons {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-booking-buttons .booking-button {
    width: 175px;
    min-height: 92px;
    padding: 14px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    box-sizing: border-box;

    text-align: center;
    text-decoration: none !important;

    color: #ffffff !important;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.fixed-booking-buttons .booking-button:hover {
    transform: translateX(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
}

/* Doctolib Blau */
.fixed-booking-buttons .doctolib-booking {
    background: #107aca;
}

/* Jameda Grün */
.fixed-booking-buttons .jameda-booking {
    background: #00a98f;
}

.fixed-booking-buttons .booking-title {
    display: block;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
}

.fixed-booking-buttons .booking-subtitle {
    display: block;
    margin-top: 4px;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}

.fixed-booking-buttons .booking-action {
    display: block;
    margin-top: 9px;
    padding-top: 7px;
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.55);

    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ======================================
   TABLET UND HANDY
====================================== */

@media screen and (max-width: 900px) {

    .fixed-booking-buttons {
        right: 8px;
        top: auto;
        bottom: 15px;
        transform: none;
        gap: 7px;
    }

    .fixed-booking-buttons .booking-button {
        width: 135px;
        min-height: 66px;
        padding: 9px 10px;
        border-radius: 9px;
    }

    .fixed-booking-buttons .booking-title {
        font-size: 15px;
    }

    .fixed-booking-buttons .booking-subtitle {
        font-size: 12px;
        margin-top: 2px;
    }

    .fixed-booking-buttons .booking-action {
        margin-top: 5px;
        padding-top: 5px;
        font-size: 11px;
    }
}