/* style.css */
#floating-button-container {
    position: fixed;
    bottom: 70px;
    left: 20px;
}

#floating-button {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: 0px;
    margin-bottom: 0px;
    text-align: center;
    background: url('/wp-content/uploads/2024/05/josstanga.png') no-repeat;
    background-size: cover;
    position: relative;
}

#banner {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% + 10px); /* Aici am folosit calc() pentru a calcula poziția bannerului */
    width: 100px;
    height: 40px;
    background-color: black;
    color: white;
    text-align: center;
    line-height: 40px;
}

#floating-button:hover #banner {
    display: block;
}

#modal-container {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

#modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
