.booking-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}


.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0px;
}

.slot-btn {
    padding: 10px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.slot-btn:hover {
    background: #f5f5f5;
}

.slot-btn.active {
    background: #e53935;
    color: #fff;
    border-color: #e53935;
}


.booking-wrapper {
    max-width: 600px;
    margin: 60px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.booking-summary {
    background: #f5f5f5;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
}

#confirm-booking input,
#confirm-booking textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

#confirm-booking button {
    width: 100%;
    padding: 14px;
    background: #e11d48;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}


.ot-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto;
}

.ot-left {
    flex: 2;
}

.ot-right {
    flex: 1;
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
}

.ot-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.ot-card {
    display: flex;
    gap: 15px;
    background: #eef3f7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ot-card img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
}

.ot-warning {
    background: #ffeaea;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.section-title {
    margin: 20px 0 10px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

input, select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
}

.small-text {
    font-size: 13px;
    margin-bottom: 10px;
}

.checkboxes label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.ot-btn {
    width: 100%;
    padding: 15px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
}


.grid-2 input,
.grid-2 select {
    margin-bottom: 10px;
}

.grid-3 input {
    margin-bottom: 10px;
}

input, select {
    display: block;
}

.grid-2,
.grid-3 {
    margin-bottom: 15px;
}


.note-box {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.note-box h4 {
    margin-bottom: 10px;
}

.note-box p {
    margin-bottom: 10px;
}


.ot-checkbox-group {
    margin-top: 15px;
}

.ot-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
    cursor: pointer;
}

.ot-check input {
    margin-top: 3px;
	width:auto;
}


.rbe-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.rbe-popup-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.rbe-popup-box button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.rbe-table {
    width: 100%;
    border-collapse: collapse;
}

.rbe-table th, .rbe-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.cancel-booking {
    background: red;
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
}