#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    background-color: #009899;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
    /* Hidden by default */
    font-size: 18px;
    width: 45px;
}

#scrollTopBtn:hover {
    background-color: #333;
}

.media_bar {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #009899;
    max-width: 700px;
    width: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin: 20px auto;
}

.media_bar ul {
    display: flex;
    align-items: center;
}


.gallery a {
    text-decoration: none;
}

.gallery span {
    display: inline-block;
    color: #009899;
    padding: 0px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


