    #popup-container {
        display: none;
        position: fixed;
        top: 10%;
        left: 3%;
        right: 3%;

        background-color: #fff;
font-size: 11px;
        padding: 3px;
        border: 2px solid #000;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 10;
        text-align: center; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    #overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9;
    }
    #popup-container button {
        background-color: green;
        color: white; 
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 15px;
        align-self: center;
        margin-bottom: 10px;
    }
    #website {
        width: 100%;
        height: 950px;
    }
    .top-buttons {
        position: fixed;
        top: 1px;
        right: 10px;
        z-index: 1;
    }
    .top-buttons button {
        margin-left: 10px;
        background-color: green;
        color: white;
        border: none;
        padding: 5px 12px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 13px;
    }