/* Modal Styles */

.modal-content {
display: flex;
position: fixed;
overflow-y: auto;
left: 50%;
translate: -50% 0;
top: 50%;
transform: translateY(-50%);
background-color: #000;
width: auto;
max-height: 90vh;
max-width: 90vw;
border-radius: 10px;
padding: 30px;
box-shadow: 0 0 40px rgb(255, 255, 255, 0.6);
z-index: 999999999999;
text-align: center;
border: 2px solid blue;
font-family: 'Patrick Hand', cursive;
margin-bottom: 150px;
margin-top: 10px;
flex-direction: column;
}

.close-button {
position: absolute;
top: 10px;
right: 20px;
font-size: 30px;
font-weight: bold;
color: lime;
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;
font-family: 'Patrick Hand', cursive;

}

.modal-content input[type="text"] {
border: 2px solid blue;
background-color: #212121;
color: white;
width: 250px;
box-sizing: border-box;
font-size: 16px;
display: block;
margin: 0 auto;
margin-bottom: 10px;
font-family: 'Patrick Hand', cursive;
}

.modal-content button {
background-color: blue;
color: white;
border: 1px solid #5d5dfd;
cursor: pointer;
justify-content: center;
text-align: center;
padding-left: 20px;
padding-right: 20px;
font-family: 'Patrick Hand', cursive;
}



.modal-content.status {
  font-size: 16px;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
}
.status i {
  margin-right: 10px;
  color: white;
}
.status.green i {
  color: green;
}
.status.red i {
  color: red;
}


/* Media query for small screens */
@media screen and (max-width: 480px) {
.modal-content input[type="text"] {
  width: 250px;
}
}

/* Fix for the input width issue */
.modal-content input[type="text"] {
width: 80vw;
max-width: 300px;
}


@media (max-width: 768px) {
/* Styles for small screens */
}

@media (min-width: 769px) and (max-width: 1024px) {
/* Styles for medium screens */
}

@media (min-width: 1025px) {
/* Styles for large screens */
}