    .sidebar-text {
      transition: opacity 0.2s ease-in-out;
    }
    body {
      font-family: 'Inter', sans-serif;
    }
    /* Botão Hamburger personalizado */
    #checkbox {
      display: none;
    }
    .toggle {
      position: relative;
      width: 40px;
      height: 40px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 10px;
      transition-duration: .5s;
    }
    .bars {
      width: 100%;
      height: 4px;
      background-color: rgb(92, 130, 255);
      border-radius: 4px;
      transition-duration: .5s;
    }
    #bar1 {
      width: 50%;
    }
    #bar2 {
      width: 75%;
      transition-duration: .8s;
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      filter: invert(0.8) brightness(1.2); /* Deixa o ícone claro e visível no fundo escuro */
    }