.cabin-select { position: relative; cursor: pointer; }

.cabin-popup {
    position: absolute; background: #fff; border-radius: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15); padding: 8px;
    width: 200px; z-index: 999999; display: none;
}

.cabin-title { 
    font-weight: 600; margin-bottom: 8px; font-size: 14px; 
    padding: 6px 10px; color: #1e293b; border-bottom: 1px solid #f1f5f9;
}

/* Căn chỉnh thẳng hàng dọc tăm tắp */
.cabin-option {
    display: flex !important; 
    align-items: center !important; 
    justify-content: space-between !important;
    padding: 10px 10px !important; 
    font-size: 14px; 
    border-radius: 6px; 
    cursor: pointer;
    margin-bottom: 2px !important;
    transition: background 0.2s;
}

.cabin-option:hover { background: #f8fafc; }
.cabin-option.active, .cabin-option:active { background: #eef2ff; }

/* Ép cứng nút radio */
.cabin-option input[type="radio"] { 
    margin: 0 !important; 
    padding: 0 !important;
    width: 16px; 
    height: 16px;
    cursor: pointer;
    accent-color: #3f73c6; 
    flex-shrink: 0; /* Không bị bóp méo khi chữ dài */
}

.cabin-option span {
    flex: 1;
    font-weight: 500;
    color: #334155;
}