.availability-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.available {
    background-color: #32d296;
}

.booked {
    background-color: #f0506e;
}

/* Kalender Styles */
.calendar-day {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    line-height: 36px !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    border: 1px solid #e5e5e5 !important;
}

/* Hover und Auswahlstatus */
.calendar-day-available:hover {
    background-color: rgba(33, 150, 243, 0.1) !important;
    border-color: #2196f3 !important;
}

.calendar-day.uk-button-primary {
    background-color: #1e87f0 !important;
    color: #fff !important;
    border-color: #1e87f0 !important;
}

.calendar-day.uk-disabled {
    opacity: 0.5;
}

/* Status-spezifische Styles */
.calendar-day-available {
    background-color: #ffffff !important;
    border-color: #e5e5e5 !important;
}

.calendar-day-reserved {
    background-color: #fff9c4 !important;
    border-color: #fdd835 !important;
    color: #f57f17 !important;
    cursor: not-allowed !important;
}

.calendar-day-booked {
    background-color: #ffebee !important;
    border-color: #ef5350 !important;
    color: #d32f2f !important;
    cursor: not-allowed !important;
}

.calendar-day-past {
    background-color: #f5f5f5 !important;
    color: #9e9e9e !important;
    border-color: #e0e0e0 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}

/* Staff Booking Container */
.staff-booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.staff-booking-container select {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.staff-booking-container .uk-button {
    min-width: 120px;
}

/* Kalender Container */
#calendar-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Anpassungen */
@media (max-width: 640px) {
    .calendar-day {
        height: 35px !important;
        width: 35px !important;
        line-height: 35px !important;
        font-size: 14px;
    }
    
    .staff-booking-container {
        padding: 10px;
    }
}

.uk-table td {
    padding: 8px 4px !important;
}

.uk-card-body {
    padding: 15px !important;
}

/* Payment Button Styles */
.payment-button {
    text-decoration: none !important;
    cursor: pointer;
}

.payment-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-button .uk-icon svg {
    fill: currentColor;
}

/* Payment Buttons Container */
.payment-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

#paypal-button-container {
    min-width: 150px;
    height: 40px; /* Anpassen an die Höhe des Stripe-Buttons */
}

/* Stelle sicher, dass beide Buttons die gleiche Höhe haben */
.payment-button,
#paypal-button-container .paypal-button {
    height: 40px !important;
} 