﻿.input-style.has-borders div.divInput {
    height: 53px;
    border-left-width: 1px !important;
    border-right-width: 1px !important;
    border-top-width: 1px !important;
    padding-left: 13px !important;
    padding-right: 10px !important;
    border-radius: 10px !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    /**/
    width: 100%;
    line-height: 45px;
    padding: 0px;
    font-size: 12px !important;
    /*height: 45px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
    border-radius: 0px;*/
    display:flex;
    align-items:center;
}

.input-style.has-borders div.divInput i {
    position:absolute;
    right:20px;
}

.overflow-scroll-bar {
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 8px;
}

/* Personalizzazione della scrollbar */
.overflow-scroll-bar::-webkit-scrollbar {
    display: block;
    width: 8px; /* Larghezza della scrollbar */
    background: #f1f1f1; /* Sfondo visibile */
}

/* Track (sfondo della scrollbar) */
.overflow-scroll-bar::-webkit-scrollbar-track {
    background-color: #f1f1f1; /*#e9e9e9;*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

/* Thumb (la parte 移動bile della scrollbar) */
.overflow-scroll-bar::-webkit-scrollbar-thumb {
    background-color: #888; /*#c0c0c0; */
    border-radius: 10px;
}

/* Hover sul thumb */
.overflow-scroll-bar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#IDStatus {
    -webkit-appearance: none; /* Per Safari e Chrome */
    -moz-appearance: none; /* Per Firefox */
    appearance: none; /* Standard */
    background-color: #8CC152 !important;
    border-color: #8CC152 !important;
    color: #ffffff !important;
}

.input-error, .select-error, .div-error {
    border: 1px solid red !important;
    padding-left: 10px;
    padding-right: 10px;
}

.select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px; /* spazio per la freccia */
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
}


/*.input-style.has-borders input:invalid,
.input-style.has-borders select:invalid,
.input-style.has-borders textarea:invalid {
    border-color:red !important;
}

.input-style.has-borders input:valid,
.input-style.has-borders select:valid,
.input-style.has-borders textarea:valid {
    border-color: rgba(0, 0, 0, 0.08) !important;
}*/

/*.carousel {
    position: relative;
    width: 300px;
    overflow: hidden;
    margin: 0 auto;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    background-color: lightblue;
    text-align: center;
    line-height: 200px;
    height: 200px;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
*/