/* Widget container */
.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Button to open the options */
.widget-button {
    position: relative;
    size: 20px;
    background-color: #F7941D;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.widget-button:hover {
    transform: scale(1.1);
}

/* Contact options */
.contact-options {
    width: auto;
    display: none;
    position: absolute;
    bottom: 80px;
    right: 100px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-options a {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    transition: background-color 0.2s;
}

.contact-options a:last-child {
    border-bottom: none;
}

.contact-options a:hover {
    background-color: #f9f9f9;
    color:blue;
}

.contact-options a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}