/* Fixed button styling */
/* Fixed vertical button */
#w3ctrl-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
}

#w3ctrl-button button {
    background-color: #15623F;
    font-weight: 500;
    color: #fff;
    text-transform: none;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Style for the Font Awesome icon */
#w3ctrl-button button i {
    font-size: 20px;
    margin-bottom: 5px;
}


/* Popup overlay styling */
.w3ctrl-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
}

/* Popup content styling */
.w3ctrl-popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    width: 300px;
    margin: 100px auto;
    border-radius: 10px;
    text-align: center;
}

.w3ctrl-popup-content img {
    max-width: 100%;
    height: auto;
}

.w3ctrl-close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
