.ui-datepicker {
    width: auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-family: 'Jost', sans-serif;
    display: inline-block;
}

.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    background: transparent;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.ui-datepicker-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.ui-datepicker-calendar th {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #bf6d76;
}

.ui-datepicker-calendar td {
    padding: 2px;
    text-align: center;
}

.ui-datepicker-calendar td a {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ui-datepicker-calendar td a.ui-state-hover {
    background-color: #f0f0f0;
}

.ui-datepicker-calendar td a.ui-state-active {
    background-color: #add8e6;
    color: #fff;
    border-color: #add8e6;
}

.ui-datepicker-calendar td a.ui-state-highlight {
    background-color: #fff799;
    border-color: #fff799;
}

.ui-datepicker-calendar td.ui-datepicker-unselectable .ui-state-default {
    opacity: 0.5;
    pointer-events: none;
}

.time-slots-container {
    margin-top: 20px;
    padding-left: 20px;
}

.time-slots-container h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.time-slots-container p {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot-btn {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.time-slot-btn.selected {
    background-color: #bf6d76;
    color: #fff;
    border-color: #bf6d76;
}

.service-section.bg-color-1 {
    background-color: #fdf7f5;
}
