body {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.container-info-bottom {
    z-index: 1;
    position: fixed;
    left: 50%;
    bottom: 2.5%;                   
    transform: translate(-50%, 150%);
    
    width: 80%;
    border-radius: 5px;
    padding: 10px 20px;
    background-color: rgb(55, 55, 55);

    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.container-info-bottom.active {
    transform: translate(-50%, 0);  /* slide up into place */
    opacity: 1;
    pointer-events: auto;
}

.info-text {
    margin: 10px;
    font-size: 12px;
    color: whitesmoke;
}

a {
    color: rgb(175, 175, 253);
    text-decoration: none;
    font-weight: bold;
}

#info-close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    color: rgb(181, 181, 181);
}

#info-close-btn:hover {
    cursor: pointer;
    color: rgb(184, 63, 63);
}

#info-circle-btn {
    position: absolute;
    bottom: 2.5%;
    right: 1.25%;
    z-index: 1;

    width: 30px;
    height: 30px;
    background-color: rgb(55, 55, 55);
    border: 2px whitesmoke solid;
    border-radius: 50%;
    cursor: pointer;
    color: whitesmoke;
    font-size: 20px;
    font-style: bold;

    display: flex;
    align-items: center;     
    justify-content: center;

    opacity: 100;
    transition: opacity 0.2s ease; /* smooth fade */
}

#info-circle-btn.hidden {
    opacity: 0;
    pointer-events: none; /* disables clicks while hidden */
}

