.eob-form-container input, select {background: #fff; border: none; height: 40px}
.eob-form-container input[disabled]{opacity: 0.3; cursor: no-drop}
.eob-form-container label {position:relative; margin-bottom: 0}
.eob-form-container {
    border-radius: 5px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 50px 60px 50px;
}
.eob-title-label {
    font-weight: bold;
}
.eob-form-container--inner.direction-row {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
@media(min-width:1200px){
    .eob-form-container--inner.direction-row {
        flex-wrap: nowrap;
    }
}
@media(max-width:767px){
    .eob-form-container--inner.direction-row {
        flex-direction: column;
    }
}
.eob-form-container--inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.eob-form-container button[type="submit"] {
    border-radius: 0 4px 4px 0;
    bottom: 0;
    right: 6px;
    padding: 12px 28px;
    z-index: 9;
    border: none;
    height: 40px;
    display: flex;
    align-self: flex-end;
    align-items: center;
    color: #fff;
    background-color: #000;
}

input[type="text"], input[type="date"], select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 0;
    background-color: #fff !important;
    color: #000;
}

button {
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Stile per i suggerimenti */
.eob-suggestions {
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.eob-suggestions div {
    padding: 8px;
    cursor: pointer;
    color: #000;
}

.eob-suggestions div:hover {
    background-color: #f1f1f1;
}
.spinner-loader {
    display: inline-block;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    border: 0.25rem solid #000;
    border-top-color: #e5e1e1;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 10px;
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.eob-btn-container {
    min-width: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.react-datepicker {
    position: absolute;      
    top: calc(100% + 5px);  
    left: 0;                 
    z-index: 1000;          
    background-color: white; 
    border: 1px solid #ccc; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;          
    border-radius: 4px;    
    width: 280px;           
    max-height: 400px;      
    overflow-y: auto;   
    font-size: .9rem;
    background-color: #fff;
    color: inherit;
    border-left: 1px solid #aeaeae;
    border-right: 1px solid #aeaeae;
    border-bottom: 1px solid #aeaeae;
    display: inline-block;
    z-index: 1999;    
}
.react-datepicker__header {
    text-align: center;
    background-color: #f63;
    border-bottom: 1px solid #aeaeae;
    border-top-left-radius: .3rem;
    padding-top: 8px;
    position: relative;
}
.react-datepicker__month-dropdown-container, .react-datepicker__year-dropdown-container{
    display: inline-block;
    margin: 0 2px;
}
.react-datepicker__day-names {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
}
.react-datepicker__month-dropdown-container select, .react-datepicker__year-dropdown-container select{
    background: #fff;
    color: #3d3e40;
    line-height: 1.5rem;
    font-size: 15px;
    border: none;
    padding: 3px;
    border-radius: 3px;
    height: auto;
}
.react-datepicker__day-name {
    color: #fff;
    display: inline-block;
    width: 2rem;
    line-height: 2rem;
    text-align: center;
}
.react-datepicker__body {
    margin: .4rem;
    text-align: center;
}
.react-datepicker__week {
    display: flex;
    flex-direction: row;
}
.react-datepicker__day-name, .react-datepicker__day {margin: 9px;font-size: 12px; }

.react-datepicker__day {
    display: inline-block;
    width: 2rem;
    line-height: 2rem;
    text-align: center;
}
.react-datepicker__day.non-selectable {
    cursor: default;
    color: #ccc;
}
.react-datepicker__day.selectable {
    font-weight: bold;
    cursor: pointer;
    transition: all 320ms;
}
.react-datepicker__day.today {
    border-radius: .3rem;
    border: 1px solid #ccc;
}

.react-datepicker__day.selectable :hover {
    border-radius: .3rem;
    background-color: #f0f0f0;
}
.react-datepicker__navigation {
    background: none;
    line-height: 1.7rem;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 10px;
    width: 0;
    padding: 0;
    border: .45rem solid rgba(0, 0, 0, 0);
    z-index: 1;
    height: 10px;
    width: 10px;
    text-indent: -999em;
    overflow: hidden;
}
.react-datepicker__navigation--previous {
    left: 10px;
    border-right-color: #ccc;
}
.react-datepicker__navigation--next {
    right: 10px;
    border-left-color: #ccc;
}
.eob-form-radio {flex-direction: row; display: flex; margin-left: -7px; margin-bottom: 10px}
.eob-form-radio input {cursor: pointer; opacity: 0;position: absolute;}
.eob-form-radio label {
    align-items: center;
    border-radius: 6px;
    color: #353535;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    gap: 12px;
    margin: 2px;
    min-height: 30px;
    padding: 3px;
    position: relative;
    vertical-align: middle;
}
.eob-form-radio input:checked + label:before {
    border-color: #000;
}
.eob-form-radio input:checked + label:after{
    background-color: #000;    
    transform: scale(1);
}
.eob-form-radio label:before {
    border: 2px solid #8b8b8b;
    border-radius: 100%;
    height: 30px;
    transition: border-color .25s ease;
    width: 30px;
}
.eob-form-radio label:after {
    background-color: #8b8b8b;
    height: 30px;
    left: 3px;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M12 2a10.01 10.01 0 000 20 10.01 10.01 0 000-20z' /%3E%3C/svg%3E") no-repeat center / 30px;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M12 2a10.01 10.01 0 000 20 10.01 10.01 0 000-20z' /%3E%3C/svg%3E") no-repeat center / 30px;
    -webkit-mask-size: 20px;
    mask-size: 20px;
    pointer-events: none;
    position: absolute;
    top: 3px;
    transform: scale(0);
    transition: transform .25s ease, background-color .25s ease;
    width: 30px;
}
.eob-form-radio label:after, .eob-form-radio label:before {
    align-self: flex-start;
    content: "";
    display: block;
    flex-shrink: 0;
}
.eob-form-container--inner input[type="text"]{
    padding-left: 40px;
    position: relative;
}
.eob-form-container--inner svg {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 4px;
    top: 13px;
}
.eob-form-container--inner input[disabled] + svg {
    stroke: #dbdada;
}