 /**
 * Hệ thống định dạng giao diện dùng chung cho thanh BarDetail
 * Đường dẫn: js/bardetail/helper/helper.css
 */

/* Khối bao ngoài của giao diện Khách (Chưa đăng nhập) */
.helper-guest-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--theme-app-bg);
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

/* Hộp căn giữa nội dung */
.helper-guest-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Icon khóa hiển thị lớn */
.helper-guest-icon {
    font-size: 52px;
    margin-bottom: 16px;
    line-height: 1;
}

/* Tiêu đề yêu cầu đăng nhập */
.helper-guest-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

/* Đoạn văn mô tả nghiệp vụ cụ thể */
.helper-guest-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 24px 0;
    max-width: 280px;
}

/* Nút bấm chuyển hướng đăng nhập nhanh */
.helper-btn-login-now {
    background-color: var(--text-primary);
    color: var(--theme-body-bg);
    border: none;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    display: inline-block;
}

.helper-btn-login-now:hover {
    background-color: var(--text-primary);
    opacity: 0.85;
}

.helper-btn-login-now:active {
    transform: scale(0.97);
    opacity: 0.7;
}