body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: black;
    color: white;
    margin-top: 100px;
    position: relative;
}
#login-container {
    position: relative;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
#password-input {
    padding: 10px;
    font-size: 16px;
}
#submit-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
#message {
    margin-top: 20px;
    font-size: 18px;
}
#message.correct {
    color: green;
}
#toolbar-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
#toolbar {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background: white;
    color: black;
    border: 2px solid black;
    padding: 10px;
    text-align: left;
}
.toolbar-button {
    display: block;
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 5px;
}
.toolbar-button:hover {
    background: red;
    color: white;
}
#lockout-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: black;
    border: 2px solid black;
    padding: 40px;
    text-align: center;
    z-index: 1000;
    width: 50%;
}
#lockout-modal button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.hidden {
    display: none;
}

.shown {
    display: inline;
}