body {
    font-family: Arial, sans-serif;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
    overflow-x: hidden;
}
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
select, input, button {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
select#poNumber {
    height: 130px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background: white;
    padding: 20px;
    width: 500px;
    margin: 15% auto;
    position: relative;
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.open-modal {
    padding: 10px 20px;
    background: blue;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
#modal-toggle:checked ~ .modal {
    display: block;
}

#modal-toggle:checked ~ body {
    overflow: hidden;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    left: 1px!important;
    top: -4px!important;
    width: 20px;
    border-right:0px solid white!important;
}

.select2-container {
    width: 100%!important;
}

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; 
}

#pre-loader img {
    width: 80px; 
    height: 80px;
}

.hidden {
    display: none;
}
