body {
    background-color: black;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#circle {
    border: 10px solid white;
    border-radius: 50%;
    width: 90vmin;
    height: 90vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#entry-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#entry {
    width: 70%;
    text-align: center;
    outline: none;
    border: none;
    background: transparent;
    color: white;
    font-family: Consolas;
    font-size: calc(2px + 2vmin);
    caret-color: white;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

.modal {
    display: none !important; /* Force hidden on load */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: transparent;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: transparent;
    border: none;
    width: 300px;
    padding: 0;
    text-align: center;
    color: white;
    font-family: Consolas;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-size: calc(2px + 2vmin);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    display: block;
    width: 100%;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-family: Consolas;
    font-size: calc(2px + 2vmin);
    padding: 5px;
    box-sizing: border-box;
}

.form-group input[type="file"] {
    display: block;
    margin-top: 5px;
    color: white;
    font-family: Consolas;
    font-size: calc(2px + 2vmin);
}

#submitUpload {
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-family: Consolas;
    font-size: calc(2px + 2vmin);
    cursor: pointer;
    margin-top: 10px;
}

#submitUpload:hover {
    background-color: white;
    color: black;
}