#mavs-contact-popup {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

#mavs-contact-toggle {
    background: #2a7abf;
    color: #fff;
    height: 60px;
    width: 60px;
    line-height: 50px;
    padding: 0px 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

#mavs-popup-box {
    display: none;
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.popup-header {
    background: #0078d7;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header .close-btn {
    color: #4d79bd;
    font-size: 22px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    padding: 0px 5px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
}

.popup-body {
    padding: 10px;
}

.popup-link {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.popup-link small {
    color: #777;
    font-size: 12px;
}

.popup-link:hover {
    background: #f5f5f5;
}