:root {
    --main-color: #a2d4c4;
    --main-light-color: #a2d4c4;
    --selected-main-color: #023382;
    --dark-main-color: #6fbda4;
}

/* Floating Action Button */
#nextButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #a2d4c4;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 60px;
}

#nextButton:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#nextButton:active {
    transform: scale(0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Center the Image */
#nextButton img {
    width: 20px;
    height: 20px;
}

.fl1{
    flex: 1;
}

.fl2{
    flex: 2;
}

#titolo{
    font-size: 14pt;
    font-weight: 600;
    text-align: center;
    margin-left: 10px;
}

#headSection{
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    align-items: center;
}

.p20{
    padding: 20px;
}

/* GESTIONE LIST TILE STILE FLUTTER */
.list-tile {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
    cursor: pointer;
  }
  
  .list-tile:hover {
    background-color: #f5f5f5;
  }
  
  .list-tile-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .list-tile-content {
    display: flex;
    flex-direction: column;
  }
  
  .list-tile-title {
    font-size: 16px;
    font-weight: bold;
  }
  
  .list-tile-subtitle {
    font-size: 14px;
    color: #666;
  }
  