/* Booking Widget */
.cedear-booking-widget {
    font-family: 'Inter', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.cedear-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.cedear-nav-btn {
    background: #f0f0f0;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.cedear-nav-btn:hover {
    background: #e0e0e0;
}

.cedear-slots-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.cedear-day-col {
    text-align: center;
}

.cedear-day-header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.cedear-day-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cedear-slot {
    font-size: 12px;
    padding: 8px 4px;
    border-radius: 4px;
    background: #f0f9f0;
    color: #2c662d;
    cursor: pointer;
    transition: all 0.2s;
}

.cedear-slot:hover {
    background: #d4edd4;
}

.cedear-slot.booked {
    background: #fbeaea;
    color: #cc0000;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.6;
}

.cedear-loading-slots {
    text-align: center;
    color: #666;
    padding: 40px;
}

/* Modal */
.cedear-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cedear-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cedear-modal-content h3 {
    margin-top: 0;
}

.cedear-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.cedear-btn-confirm {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.cedear-btn-cancel {
    background: #eee;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}