#visitor-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 52px;
    height: 52px;
    background: #002570;
    color: #ffffff;

    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 9999;

    display: flex;
    align-items: center;

    transition:
        width 0.3s ease,
        height 0.3s ease,
        border-radius 0.3s ease,
        box-shadow 0.3s ease;
}

/* EXPANDED STATE */
#visitor-widget:hover {
    width: 200px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

#visitor-header {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    flex-shrink: 0;
}

#visitor-content {
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(-10px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* SHOW CONTENT ONLY ON HOVER */
#visitor-widget:hover #visitor-content {
    opacity: 1;
    transform: translateX(0);
}

#visitor-content p {
    margin: 6px 0;
}
