

@media screen and (max-width: 768px) {
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 16px;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .logo-mobile {
    height: 36px;
  }
  .logoaziendale-mobile {
     margin-left: 10px; 
     margin-right: 20px;
     width: 180px;
  }

  .menu-toggle {
    background-color: #ffffff;
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    height: 50px;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Hover e focus visibili */
.menu-toggle:hover,
.menu-toggle:focus {
  background-color: #dddddd;
}


  .mobile-dropdown {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: 80px;
    width: 100%;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .mobile-dropdown a {
    
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-dark);
    border-top: 1px solid #eee;
  }

  .mobile-dropdown.show {
    display: flex;
  }

  .sidebar,
  .sidebar-logo,
  .sidebar-nav {
    display: none !important;
  }

  .main-content {
    margin-top: 110px;
    padding: 20px;
  }
}
