body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

#container {
    position: relative;
    width: 100%;
    height: 100%;
}

#camera-container {
    position: relative;
    display: inline-block;
}

#video {
    width: 75%;
    height: auto;
    border: 3px solid black;
}

#wait-gif {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: auto;
}

#floating-menu {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 50px;
    background-color: white;
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-button-large {
    width: 80px;
    height: 80px;
    background-color: red;
}

#info-button { background-color: blue; }
#select-image-button { background-color: green; }
#history-button { background-color: yellow; }
#download-button { background-color: purple; }
