/* Password box */
.overlay-password {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: gray;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.overlay-password .password-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.overlay-password input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 200px;
}
.overlay-password button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.overlay-password button:hover {
    background-color: #0056b3;
}