
.modal {
	font-family: Arial, sans-serif;
	
    display: none; /* Hide modal by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    
    /* Remove the second "display: flex;" */
    justify-content: center;
    align-items: center;
}

/* Show modal when 'show' class is added */
.modal.show {
    display: flex;
}

/* Modal Content Box */
.modal-content {
    background-color: white;
    padding: 25px;
    width: 450px; /* Adjust width */
    border-radius: 8px; /* Rounded corners */
    text-align: center;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}
.modal-content label {
    display: block;
    text-align: left;
	margin-left:12px;
    /* font-weight: bold;  Optional: Makes labels stand out */
    margin-bottom: 3px; /* Adds spacing below labels */
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
    background: none;
    border: none;
}

.close:hover {
    color: red;
}

/* Form Input Styling */
input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}



/* Submit Button */
button {
   background-color: #bfbfbf;
    
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
   background-color: #0056b3;
  
}