﻿/* Help Button Wrapper (positions the button) */
.help-button-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-align: right; /* ensures content is right-aligned if block-level */
}

/* The actual Help button */
.help-button {
    display: inline-block;
    background-color: #007bff; /* Bootstrap primary blue; change to your theme color */
    color: white;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: background-color 0.2s, transform 0.1s;
}

    .help-button:hover {
        background-color: #0056b3; /* darker on hover */
        transform: translateY(-1px);
    }

/* Overlay full-screen container */
.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1001;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* The box inside the overlay */
.help-box {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Close (“×”) button */
.help-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.6rem;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}

    .help-close:hover {
        color: #000;
    }

/* Help box headings, paragraphs, links */
.help-box h2 {
    margin-top: 0;
    color: #333;
}

.help-box p {
    font-size: 1rem;
    color: #444;
}

.help-box a {
    color: #007bff;
    text-decoration: none;
}

    .help-box a:hover {
        text-decoration: underline;
    }

/* FAQ section */
.faq-section {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 1.25rem;
    color: #555;
}

.faq-item strong {
        color: #222;
}

.ad-login-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s, transform 0.1s;
}

    .ad-login-link:hover {
        color: #0056b3;
        transform: translateY(-1px);
    }

.ad-logo {
    height: 24px;
    width: auto;
    margin-right: 0.5rem;
}

.ad-text {
    font-size: 1rem;
    font-weight: 600;
}
