/* Style for modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    /* Adjust as needed */
    width: 100%;
}

/* Style for close button */
.close {
    color: #aaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    align-self: self-end;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style for form elements */
label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

select,
input {
    width: 100%;
    padding: 6px;
    margin-bottom: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
}

button {
    background-color: #4caf50;
    color: #fff;
    padding: 6px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #45a049;
}

h5 {
    font-size: 16px;
    font-weight: 700;
}
