.cnb-booking-form .slot {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.cnb-booking-form .slot:hover {
    background-color: #f8f9fa;
}
.cnb-booking-form .slot.selected {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}
#booking-message.alert, #promo-message.alert {
    margin-top: 1rem;
}
#available-slots:empty::after {
    content: 'No slots available';
    color: #6c757d;
    display: block;
    text-align: center;
    padding: 10px;
}
#cnb-booking-wizard {
    background: #fff;
    border-radius: 8px;
   
}
.wizard .steps {
    margin-bottom: 20px;
}
.wizard .steps ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}
.wizard .steps li {
    flex: 1;
    text-align: center;
    position: relative;
}
.wizard .steps li a {
    color: #6c757d;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
    display: block;
}
.wizard .steps li.current a {
    color: #0d6efd;
    background: #e7f1ff;
    border-radius: 4px;
}
.wizard .steps li.completed a {
    color: #28a745;
}
.wizard .steps li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dee2e6;
    z-index: -1;
}
.wizard .steps li.current::before,
.wizard .steps li.completed::before {
    background: #0d6efd;
}
.wizard .content {
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}
.wizard .actions {
    margin-top: 20px;
}
.wizard .actions ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.wizard .actions li {
    margin: 0;
}
.wizard .actions a {
    padding: 10px 20px;
    border-radius: 4px;
}
.wizard .actions a[href='#previous'] {
    background: #6c757d;
    color: white;
}
.wizard .actions a[href='#next'], .wizard .actions a[href='#finish'] {
    background: #0d6efd;
    color: white;
}
#booking-confirmation {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.success-message::before {
    content: '\2713';
    font-size: 24px;
    margin-right: 10px;
    color: #28a745;
}
#promo-message {
    font-size: 0.9rem;
}