.approval-form {
    margin: auto;
    padding-top: 2rem;
}

.approval-form fieldset {
    background-color: #f2f1ed;
}
.approval-form legend{
    background-color: #1d55a1;
    color: white;
    padding: 1rem;
    width: -webkit-fill-available;
    font-size: clamp(25px, 2.86vw + 11.29px, 25px);
    margin: 0 -12px 15px -12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approval-form input, .approval-form select, .product-search-input.ui-autocomplete-input{
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    margin: 0 auto;
    padding: 10px 10px;
    box-sizing: border-box;
    transition: 0.3s;
    color: rgb(89,89,89);
    border: 1px solid #1d55a1;
    border-width: 0 0 1px 0;
    border-radius: 0;
    word-break: normal;
    background: #ebeae8;
    height: 40px;
    margin-bottom: 1rem;
}
.approval-form select{
    background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%231d55a1' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
    background-position: calc(100% - 0.75rem) center !important;
    -moz-appearance:none !important;
    -webkit-appearance: none !important; 
    appearance: none !important;
}
.approval-form select option{
    color: rgb(89,89,89);
}

.approval-form input:focus {
    box-shadow: 0px 3px 1px -3px #1661ca !important;
    border-color: #1661ca;
    outline: none;
    transition: 0.3s;
}

.approval-form .flex-selects{
    display: flex;
    flex-direction: row;
}

.approval-form .fieldlabel{
    font-size: clamp(15px,0.36vw + 13.29px,16px);
    color: #0A5461;
    display: block;
    align-items: center;
    display: flex;
    margin-bottom: 1rem;
}
.approval-form .fieldlabel span{
    box-sizing: border-box;
}
.approval-form .fieldlabel .important{
    color: #ED2626;
    position: relative;
    margin-left: 2px;
}

.approval-form .submit-button {
    background-color: #1d55a1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 2rem;
}

.submit-button:hover {
    background-color: #1661ca;
}

#products-container .product-item{
    padding-left: 10.5px;
}

.w-100{
    width: 100%;
}
.w-50{
    width: 50%;
}
.mr-3{
    margin-right: 3rem;
}
.m-0{
    margin: 0;
}

.size-selectors-container{
    display:flex;
    gap:10px;
    margin:10px 0;
}
.size-selector{
    display: flex;
    align-items: center;
    border: 1px solid;
    max-width: 115px;
}
.size-selector span{
    font-size: 2rem;
    height: 100%;
    align-items: center;
    display: flex;
    padding:0 15px;
}
.size-selector select{
    color: #FFF;
    font-size: 2rem;
    background: none;
    background-position: initial !important;
    appearance: auto !important;
    padding: 0 5px;
    border: 0;
    border-left: 1px solid #FFF;
    margin: 0 !important;
    text-align: center;
    width: auto;
}

.size-selector select:focus, .size-selector select:focus, .size-selector select:not([disabled]):focus {
    box-shadow: none;
    border: 1px solid #fff;
}

.approval-form input.input-size-field{
    margin: 0;
    border: none;
    color: #FFF;
    font-size: 2rem;
    background: none;
    background-position: initial !important;
    appearance: auto !important;
    padding: 0 5px;
    border: 0;
    border-left: 1px solid #FFF;
    margin: 0 !important;
    text-align: center;
    max-width: 50%;
}

.approval-form input.input-size-field::placeholder {
    color: #FFF;
    opacity: .5;
}

.product-search-container {
    margin: 20px 0;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}

.product-search-input {
    width: 300px;
    padding: 8px;
    margin-right: 10px;
}

#product-search-results {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
}

#add-product-btn{
    margin-top: 1rem;
}

.remove-product {
    background: #ff0000;
    color: white;
    border: none;
    padding: 7px 10px;
    cursor: pointer;
}

.ui-autocomplete.ui-front{
    background-color: white;
    max-width: 82.3% !important;
}
.ui-autocomplete.ui-front .ui-menu-item{
    font-size: 1.6rem;
    padding: 1rem 0;
    margin: 0;
}
.ui-autocomplete.ui-front .ui-menu-item:hover{
    cursor: pointer;
}

button.add-emblem.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #cccccc;
}

button.add-emblem.disabled:hover {
    background-color: #cccccc;
}