.help-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #c5c7c9;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 260px;
    z-index: 9999;
    font-family: sans-serif;
    box-sizing: border-box;
}

.close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: 0.2s ease;
    z-index: 10000;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

.help-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    padding-right: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #6f0;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.help-text {
    margin: 4px 0 12px;
    font-weight: bold;
    font-size: 16px;
    padding-right: 20px;
}

.btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 24px;
    margin-top: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.btn.primary {
    background-color: #411e75;
    color: white;
    border: none;
}

.btn.primary:hover {
    background-color: #7353ae;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #411e75;
    color: #411e75;
}

.btn.secondary:hover {
    background-color: #411e75;
    color: white;
}

.team-avatar {
    width: 92px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    margin-left: auto;
    margin-right: 8px;
    display: block;
}
/* Responsive Design */
@media (max-width: 480px) {
    .help-banner {
        width: 220px;
        max-width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        bottom: 10px;
        padding: 10px;
        border-radius: 10px;
    }

    .help-text {
        font-size: 14px;
        margin: 2px 0 8px;
        padding-right: 16px;
    }

    .help-header {
        margin-bottom: 6px;
        padding-right: 16px;
    }

    .help-header span {
        font-size: 12px;
    }

    .status-dot {
        width: 8px;
        height: 8px;
        margin-right: 4px;
    }

    .team-avatar {
        width: 60px;
        height: 30px;
        border-radius: 8px;
        margin-right: 4px;
    }

    .btn {
        font-size: 12px;
        padding: 8px;
        margin-top: 6px;
        border-radius: 18px;
    }

    .btn.secondary {
        border-width: 1.5px;
    }

    .close-button {
        width: 20px;
        height: 20px;
        font-size: 14px;
        top: 6px;
        right: 6px;
    }
}
