#floating-modal-button {
    position: fixed;
    bottom: 36px;
    left: 20px;
    padding: 20px 8px;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 5px 23px -8px rgb(26, 126, 104);
    box-shadow: 0 10px 10px -4px #24ae8f inset;
    transition: all 0.2s ease;
}

#floating-modal-button:hover {
    bbox-shadow: 0 15px 23px -8px rgb(26, 126, 104);
    bottom: 40px;
}

.floating-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}

.floating-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    width: 70%;
    max-width: 500px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.floating-modal-close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    cursor: pointer;
}

.floating-modal-links a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #0073aa;
    text-decoration: none;
    gap: 10px;
}

.floating-modal-links a:hover {
    text-decoration: underline;
}

.link-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    fill: #0073aa;
}

.modal-banner {
    margin: -20px -20px 20px -20px;
    overflow: hidden;
}

.modal-banner img {
    width: 100%;
    height: auto;
    display: block;
}