#area_submit_pw {display:none;width:350px;}
.box_pw_confirm {display:flex;justify-content: center;align-items: center;gap:5px;}
.box_pw_confirm input {width:250px;margin:0;}
.box_pw_confirm button {    
	height: 36px;
    width: 130px;
    line-height: 0;
    border-radius: 3px;
    text-transform: uppercase;}
.fancybox-inner {height:auto!important;}

/* =========================================================================
   QUY HOẠCH PHẲNG CHIA 3 CỘT TỐC ĐỘ SẢNH CHỜ CHỌN BÀN
   ========================================================================= */
.lobby-speed-grid-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Chia đều 3 cột bằng nhau */
    gap: 15px !important;
    width: 100% !important;
    margin-bottom: 30px !important;
    box-sizing: border-box !important;
}

/* =========================================================================
   TINH CHỈNH TIÊU ĐỀ 3 CỘT TỐC ĐỘ PHONG CÁCH CUNG ĐÌNH HUẾ (LIGHT MODE)
   ========================================================================= */
.speed-column-header {
    width: 100% !important;
    padding: 10px 0 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    text-align: center !important;
    border-radius: 0 !important;
    margin-bottom: 20px !important;
    letter-spacing: 4px !important; /* Giãn chữ uy nghiêm */
    
    /* Sử dụng Flexbox để tạo cấu trúc hai đường chỉ đồng chầu vào chữ ở giữa */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
}

/* TẠO HAI ĐƯỜNG CỦA ĐẠI TỰ ĐỐI XỨNG BẰNG PSEUDO-ELEMENT (SIÊU NHẸ) */
.speed-column-header::before,
.speed-column-header::after {
    content: "" !important;
    flex-grow: 1 !important; /* Tự động dãn đều ra hai biên container */
    height: 1px !important;
}

/* CỘT 1: SIÊU CHỚP - Sắc nâu gỗ trắc nền trầm, đường chỉ thanh thoát */
.col-bullet { 
    color: #2B1810 !important; 
}
.col-bullet::before,
.col-bullet::after {
    background: linear-gradient(to var(--direction, right), transparent, rgba(43, 24, 16, 0.3)) !important;
    border-bottom: 1px dashed rgba(43, 24, 16, 0.2) !important; /* Đường chỉ đứt tinh tế */
}
.col-bullet::after { --direction: left; }

/* CỘT 2: CHỚP - Sắc đỏ sơn son đại nội, điểm nhấn hai vạch chỉ đồng đúc vàng */
.col-blitz { 
    color: #8C1A1B !important; 
    text-shadow: 0.5px 0.5px 0px rgba(184, 142, 64, 0.2) !important;
}
.col-blitz::before,
.col-blitz::after {
    /* Đường chỉ kép mô phỏng viền tranh khảm xà cừ Đại Nội */
    height: 3px !important;
    border-top: 1px solid #B88E40 !important;
    border-bottom: 1px solid #B88E40 !important;
    background: transparent !important;
    opacity: 0.6 !important;
}

/* CỘT 3: NHANH - Sắc vàng thau đồng cổ tinh tế */
.col-rapid { 
    color: #B88E40 !important; 
}
.col-rapid::before,
.col-rapid::after {
    background: linear-gradient(to var(--direction, right), transparent, rgba(184, 142, 64, 0.4)) !important;
}
.col-rapid::after { --direction: left; }

.speed-column-box {
    background: #FFFFFF !important;
    border: none !important;  
    border-radius: 8px !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 420px !important;
    box-shadow: 0 10px 30px rgba(119, 0, 171, 0.05), 
                0 1px 8px rgba(119, 0, 171, 0.02) !important;
}

/* Vùng chứa các item phòng bên trong mỗi cột */
.speed-room-container {
    display: flex !important;
    flex-direction: column !important; /* Các phòng xếp hàng dọc nương theo cột */
    gap: 15px !important;
    width: 100% !important;
    flex-grow: 1 !important;
}

.room_item {
    width: 100% !important;
    margin: 0 !important;   
}

/* ĐỒNG BỘ RESPONSIVE: Khi trên Mobile nhỏ thì xếp chồng 3 cột thành hàng dọc */
@media (max-width: 768px) {
    .lobby-speed-grid-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .speed-column-box {
        min-height: initial !important;
    }
}