.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;
}

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

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

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

.help-banner .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;
}

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

.help-banner .btn.primary:hover {
    background-color: #73A6B6;
}

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

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

.help-banner .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: 600px) {
    .help-banner .help-banner {
        width: calc(100% - 40px);
        right: 10px;
        left: 10px;
        bottom: 10px;
        padding: 14px;
    }

    .help-banner .btn {
        font-size: 13px;
        padding: 9px;
    }

    .help-banner .help-text {
        font-size: 15px;
    }
}