/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 2200px; /* Adjust the max-width to your preference */
    border-radius: 5px;
    box-sizing: border-box;
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styles */
form {
    margin-top: 20px;
}
/* CSS for form labels */
form label {
    display: block;
    margin-bottom: 5px; /* Adjust the margin-bottom value as needed */
    font-weight: bold;
}




form button[type="button"]:hover {
    background-color: #45a049;
}
form button[type="submit"]:hover {
    background-color: #45a049;
}
.ui-autocomplete {
    position: relative;
    z-index: 1050;
    width: fit-content !important;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
}
.ui-helper-hidden-accessible {
   visibility: hidden !important;
}