.booking-container {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.booking-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--subtext-color);
}

.tab-item.active {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Matrix Table */
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.matrix-table th {
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
}

.matrix-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.matrix-table td:first-child {
    background: #f9f9f9;
    text-align: left;
    font-weight: bold;
}

/* Checkout Bar */
.total-bar {
    margin-top: 20px;
    padding: 20px;
    background: #f1f1f1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    border-radius: var(--border-radius);
}

.grand-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

button {
    background: var(--button-bg-color);
    color: var(--button-text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}