* {
  font-family: "Roboto", sans-serif;
}
body {
      background-color: rgba(236, 232, 223, 1) !important;
      padding-top: 100px;
      padding-bottom: 70px;
    }

    /* --- Header fisso --- */
    header {
      background-color: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      padding: 0.75rem 1rem;
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }

    .logo {
      max-width:200px;
      margin-right:20px;
    }

    .header-buttons {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .round-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e9ecef;
      border: none;
      transition: background-color 0.2s ease;
      position: relative;
    }

    .round-btn:hover {
      background-color: #dee2e6;
    }

    .profile-btn {
      width: 60px;
      height: 60px;
      position: relative;
    }

    .level-label {
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #343a40;
      color: #fff;
      font-size: 0.65rem;
      padding: 2px 6px;
      border-radius: 8px;
      white-space: nowrap;
    }

    .main {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 2rem 1rem;
      gap: 1.5rem;
    }

    .card-custom {
      background-color: #ffffff;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      max-width: 500px;
      width: 100%;
      text-align: center;
    }

    .card-custom img {
      width: 100%;
      height: auto;
      display: block;
    }

    .card-body {
      padding: 1.5rem !important;
    }

    /* --- Pulsanti principali con sfumature e sbrilluccichio --- */
    .card-button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 1rem;
      padding: 1rem 1.5rem;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      text-decoration: none;
      color: #fff;
      position: relative;
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .gradient-green {
      background: linear-gradient(135deg, #bcc591, #8dab0d);
    }

    .card-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    }

    .card-button:active {
      transform: scale(0.98);
      box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .card-button i {
      font-size: 1.8rem;
      color: #fff;
      transition: transform 0.4s ease;
    }

    .card-button:hover i {
      transform: rotate(10deg) scale(1.1);
    }

    /* --- Footer fisso --- */
    footer {
      background-color: rgba(241, 243, 245, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.08);
      padding: 0.5rem 0;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      height: 50px;
    }

    .footer-btn {
      background: none;
      border: none;
      font-size: 1.4rem;
      color: #495057;
      transition: all 0.2s ease;
    }

    .footer-btn:hover {
      color: #212529;
    }

    .footer-btn.center-btn {
      background-color: #ffffff;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: #4c6ef5;
      box-shadow: 0 4px 10px rgba(76, 110, 245, 0.3);
      transform: translateY(0);
      transition: all 0.25s ease;
    }

    .footer-btn.center-btn:hover {
      background-color: #f8faff;
      box-shadow: 0 6px 14px rgba(76, 110, 245, 0.4);
      transform: scale(1.05);
    }

    .footer-btn.center-btn:active {
      transform: scale(0.95);
    }


#wrapSocial {font-size: 30px;display: flex; flex-direction:column; align-items: center;justify-content: center;}

#contenitore_annunci {
  position:fixed; width:100%; height:100%; display:none; z-index:1010; margin-top:-10px; top:0; left:0;
}

.green {
  color:#86a30d;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden;
    height: 100%;
}

/* Tabella */
    @media (max-width: 767.98px) {
      .table-responsive-md table {
        display: block;
      }
      
      .table thead,
      .table tbody,
      .table tr,
      .table td,
      .table th {
        display: block;
      }
      
      .table thead tr {
        position: absolute;
        left: -9999px;
      }

      .table tr {
        padding: 10px 0;
      }
      
      .table td {
        border: none;
        border-bottom: 1px solid #dee2e6;
        position: relative;
        padding-left: 50% !important;
        text-align: end;
      }
      
      .table td:before {
        position: absolute;
        top: 0.75rem;
        left: 1rem;
        width: 45%;
        padding-right: 1rem;
        white-space: nowrap;
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
        text-align: start;
      }
      
      .table td:last-child {
        border-bottom: 0;
      }
    }
    .status-pill {
      padding: 0.35em 0.75em;
      border-radius: 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      /* text-align: end; */
    }