

.container {
    display: flex;
    justify-content: center;
}

.centeredButton {
    text-align: center;
}

.gradientButton {
    background: linear-gradient(to bottom, #499bda, #85bce6);
    color: #000;
    border: 1px solid #54a1da;
    padding: 5px 5px;
    border-radius: 25px;  /* Più alto è questo valore e più tondi sono i pulsanti */
    cursor: pointer;
    margin: 5px;
    font-size: 12px;
    font-weight: bold;
}

.gradientButton:hover {
    background: linear-gradient(to bottom, #c2ddf2, #53a1db);
    color: #FFF;
 }

 /* Applica uno stile diverso per schermi più piccoli */
 @media (max-width: 768px) {
    .centeredButton {
         margin-bottom: 20px; /* Aggiungi spazio tra i pulsanti */
     }
     .search-box {
         width: 90%;
     }
 }

.dropdown-btn {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-btn a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-btn a:hover {
    background-color: #f1f1f1;
}
/* Aggiunta della classe per far aprire il dropdown verso l'alto */
.dropdown-btn-up {
    bottom: 100%;
}

.rounded-corners {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-collapse: separate;
    border-spacing: 0;
}

.rounded-corners th,
.rounded-corners td {
    border: none;
}

.rounded-corners tr {
    border: none;
}

.rounded-corners table {
    border-spacing: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}
        
.separator {
    width: 100%;
}

.search-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.search-input select {
    width: 100%;
    border: none;
    padding: 10px;
    outline: none;
    background: transparent;
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.search-button img, .add-button img {
    height: 20px;
}

.search-button:hover, .add-button:hover {
    background-color: #f0f0f0;
}

@media (max-width: 480px) {
    .search-box {
         flex-direction: row; /* Mantenere il layout orizzontale */
            }

    .search-button, .add-button {
          width: auto; /* Mantieni larghezza automatica */
          justify-content: center;
            }
}

.content-table {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px 0;
}

.content-row-full {
    width: 100%;
}

.checkbox-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

 /* Stile per abilitare la barra di scorrimento orizzontale */
.scrollable-gridview {
    overflow-x: auto;
    width: 100%;
}

/* Stile per evidenziare la riga */
.highlight-row {
     background-color: #D1DDF1 !important;
}


.search-input option {
    color: #000000; /* Colore del testo normale */
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Mantieni o regola il padding per l'intera search-container */
    background-color: transparent; /* Assicurati che il contenitore principale sia trasparente */
}

.search-box {
    display: flex;
    border: 2px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    background-color: white; /* Imposta il background bianco solo per la search-box */
}

.search-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.search-input {
    border: none;
    padding: 10px;
    flex: 1;
    outline: none;
    background-color: white; /* Colore di sfondo bianco per la TextBox */
    width: 50%;
}

.search-button, .add-button {
    border: none;
    background-color: white; /* Sfondo bianco per i pulsanti */
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}




