body {
    background-color: green;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    text-align: center;
}

#display-container {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#top, #bottom {
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
}

#version {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1em;
}

#settings {
    background-color: #333;
    color: white;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

#settings-left, #settings-right {
    width: 45%;
}

#settings label, #settings input, #settings select {
    display: inline-block;
    margin: 10px 0;
}

#settings label {
    width: 200px;
    text-align: right;
    padding-right: 10px;
}

#settings input, #settings select {
    width: 200px;
    padding: 10px;
    font-size: 1em;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: yellow;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#download-log {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #444;
    color: white;
    border: none;
    cursor: pointer;
}