#custom-booth-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.column, .cluster {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.center-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.booth {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.booth .label {
    position: relative;
    z-index: 2;
}

.booth.booked::after {
    content: "BOOKED";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    z-index: 1;
}

.booth.selected {
    background-color: #b3e5fc;
    border-color: #0288d1;
}

.front-desk {
    width: 180px;
    padding: 12px;
    text-align: center;
    background: #ffe0b2;
    border: 2px solid #ff9800;
    border-radius: 6px;
    font-weight: bold;
    margin: 30px auto 0;
}

@media (max-width: 768px) {
    #custom-booth-layout {
        flex-direction: column;
        align-items: center;
    }

    .column, .cluster {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .booth {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

    .front-desk {
        font-size: 0.9rem;
        width: auto;
        margin-top: 20px;
    }
}
