/* Main Calendar Container */
.ldcb-calendar-wrapper {
    background: linear-gradient(135deg, #14a2e2 0%, #0d8dc7 50%, #086a96 100%);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    margin: 20px 0;
    box-shadow: 0 10px 40px rgba(20, 162, 226, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ... (diğer stiller aynı kalıyor) ... */

/* Selected Day */
.ldcb-day.selected {
    background: rgba(255, 255, 255, 0.95);
    color: #14a2e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ldcb-day.selected .ldcb-availability {
    color: #14a2e2;
}

/* Price */
.ldcb-booking-cost .price {
    color: #14a2e2;
    font-weight: 700;
    font-size: 16px;
}

/* Calendar Header */
.ldcb-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 8px;
}

.ldcb-calendar-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ldcb-calendar-nav {
    display: flex;
    gap: 8px;
}

.ldcb-nav-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 18px;
}

.ldcb-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.ldcb-nav-btn:active {
    transform: scale(0.95);
}

/* Calendar Grid */
.ldcb-calendar-grid {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

/* Weekday Headers */
.ldcb-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.ldcb-weekday {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Calendar Days */
.ldcb-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.ldcb-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    position: relative;
    cursor: default;
    min-height: 44px;
}

.ldcb-day.other-month {
    color: rgba(255, 255, 255, 0.2);
}

.ldcb-day.today {
    color: #ffffff;
    font-weight: 700;
}

.ldcb-day.today::after {
    content: '';
    position: absolute;
    bottom: 6px;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
}

.ldcb-day.has-booking {
    color: #ffffff;
    cursor: pointer;
}

.ldcb-day.has-booking:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.ldcb-day.selected {
    background: rgba(255, 255, 255, 0.95);
    color: #14a2e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ldcb-day.selected:hover {
    background: #ffffff;
}

.ldcb-day.fully-booked {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.ldcb-day.fully-booked::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-45deg);
}

/* Availability Badge */
.ldcb-availability {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    font-weight: 400;
}

.ldcb-day.selected .ldcb-availability {
    color: #14a2e2;
}

/* Booking Info Box */
.ldcb-booking-info {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 16px;
    display: none;
    animation: slideUp 0.3s ease;
}

.ldcb-booking-info.visible {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ldcb-booking-date {
    color: #374151;
    font-size: 14px;
    margin-bottom: 4px;
}

.ldcb-booking-date strong {
    color: #111827;
}

.ldcb-booking-cost {
    color: #374151;
    font-size: 14px;
}

.ldcb-booking-cost .price {
    color: #14a2e2;
    font-weight: 700;
    font-size: 16px;
}

/* Book Now Button */
.ldcb-book-btn {
    display: block;
    width: 100%;
    background: #1f2937;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    text-align: center;
    text-decoration: none;
}

.ldcb-book-btn:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.ldcb-book-btn:active {
    transform: translateY(0);
}

.ldcb-book-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ldcb-book-btn.loading {
    position: relative;
    color: transparent;
}

.ldcb-book-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Select Date Prompt */
.ldcb-select-prompt {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .ldcb-calendar-wrapper {
        padding: 16px;
        margin: 16px 0;
        border-radius: 12px;
    }

    .ldcb-calendar-grid {
        padding: 12px;
    }

    .ldcb-day {
        min-height: 38px;
        font-size: 13px;
    }

    .ldcb-availability {
        font-size: 8px;
    }

    .ldcb-calendar-title {
        font-size: 12px;
    }
}

/* Animation for month change */
.ldcb-days.fade-out {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.ldcb-days.fade-in {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.2s ease;
}

/* Legend */
.ldcb-legend {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.ldcb-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.ldcb-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.ldcb-legend-dot.available {
    background: #ffffff;
}

.ldcb-legend-dot.limited {
    background: rgba(255, 193, 7, 0.8);
}

.ldcb-legend-dot.full {
    background: rgba(255, 255, 255, 0.3);
}