/* Modal Styles */

.modal-content {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-image: url("images/BG.png");
background-size: cover;
background-position: center;
background-attachment: fixed;
width: 80%;
height: 90vh;
max-width: 90vw;
border-radius: 4px;
padding: 30px;
box-shadow: 0 0 10px rgb(255, 255, 255, 0.9);
z-index: 9999;
text-align: center;
border: 2px solid #c59655;
overflow-y: auto;

}

.close-button {
position: absolute;
top: 10px;
right: 20px;
font-size: 24px;
font-weight: bold;
color: #c59655;
cursor: pointer;
}

.close-button:hover {
color: white;
}

input[type="text"] {
display: block;
padding: 10px;
border: none;
border-radius: 4px;
margin-bottom: 10px;
}

button[type="submit"] {
background-color: #008cba;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;

}

.modal-content input[type="text"] {
border: 2px solid #c59655;
background-color: #212121;
color: white;
width: 100%;
box-sizing: border-box;
font-size: 16px;
display: block;
margin: 0 auto;
margin-bottom: 10px;
}

button {
background-color: black;
color: #c59655;
border: 1px solid #c59655;
padding: 5px;
cursor: pointer;
justify-content: center;
text-align: center;
padding-left: 20px;
padding-right: 20px;
}
#userInfo {
font-size: 16px;
line-height: 2;
}

#userName {
font-size: 16px;
}