   body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #162f4b;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.logo {
  font-size: 18px;
}

.menu {
  display: flex;
  font-size: 14px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
    margin-right: 50px;

}

.menu li {
  margin-left: 20px;
}

.menu li:first-child {
  margin-left: 0;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #333;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 2; /* Adicionamos um z-index para garantir que o menu lateral fique sobreposto */
}

.sidebar nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar nav ul li {
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
}

.sidebar nav ul li a {
  color: #627283;
  text-decoration: none;
}



@media only screen and (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: 10px;
  }

  .menu-toggle:checked + .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #0056b3;
    width: 100%;
    z-index: 1;
  }

  .menu-toggle:checked + .menu li {
    text-align: center;
    margin: 0;
    padding: 10px 0;
  }

  .sidebar {
    left: -250px;
  }

  .sidebar.active {
    left: 0;
  }
}

@media only screen and (min-width: 769px) {
  .sidebar {
    position: fixed;
    margin-top: 48px;
    top: 0;
    left: 0;
    width: 230px;
    height: 100%;
    background-color: #dadcdf;
    padding-top: 10px;
  }

  .sidebar.active {
    left: -250px;
  }

  .hamburger {
    display: none;
  }
}

.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  backdrop-filter: blur(7px); /* Adiciona o efeito de vidro com um desfoque de 10px */
  background-color: rgba(105, 120, 136, 0.62); /* Cor de fundo com opacidade */
  transition: backdrop-filter 0.3s ease; /* Adiciona uma transição para suavizar o efeito */
}

.header-transition {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.fixed-header .header-transition {
  opacity: 1;
}




   
   
    /* Adiciona rolagem horizontal à tabela */
    .dashboard-container {
        overflow-x: auto;
    }

    body {
        background-color: #e9e9e9;
    }

  .content {
        max-width: 800px;
        margin: 20px auto;
        background-color: #f5f5f5;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .card {
        background-color: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Estilo para tornar o layout responsivo */
    @media only screen and (max-width: 768px) {
        .content {
            padding-left: 0;
            /* Remove o padding à esquerda em dispositivos móveis */
        }
    }

    /* Estilo para a tabela */
    table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 20px;
        border-spacing: 0;
        font-family: 'Roboto', sans-serif;
        /* Fonte Roboto */
        overflow-x: auto;
        /* Adiciona rolagem horizontal */
    }

    th,
    td {
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #627283;
        font-size: 12px;
        /* Fonte mais elegante */
        white-space: nowrap;
        /* Impede a quebra de texto */
    }

    th {
        background-color: #2e4a69;
        color: #fff;
        position: relative;
        font-weight: 500;
    }

    th:not(:first-child)::after {
        content: '';
        position: absolute;
        top: 6px;
        bottom: 6px;
        left: 0;
        width: 1px;
        background-color: #395b81;
    }

    tbody td {
        border-right: 1px solid #ddd;
        /* Adiciona uma linha vertical à direita de cada célula */
    }

    tbody tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    /* Estilo para os botões de ação */
    .button {
        display: inline-block;
        padding: 5px 10px;
        border-radius: 2px;
        text-decoration: none;
        text-align: center;
        color: #fff;
        transition: background-color 0.3s;
        font-family: 'Roboto', sans-serif;
        /* Fonte Roboto */
        font-size: 11px;
    }

 
    /* Cor de fundo dos botões de ativar */
    .button.activate {
        background-color: #296cb5;
    }

    /* Cor de fundo dos botões de desativar */
    .button.deactivate {
        background-color: #627283;
    }

    /* Cor de fundo dos botões de editar */
    .button.edit {
        background-color: #4b5865;
    }

    /* Cor de fundo dos botões de excluir */
    .button.delete {
        background-color: #bf4b4b;
    }
    
     /* Cor de fundo dos botões de excluir */
    .button.verde {
        background-color: #567056;
    }
    
    /* Cor de fundo dos botões cinza */
    .button.cinza {
        background-color: #63778b;
    }

   
    /* Estilize o hover dos botões */
    .button:hover {
        background-color: #555;
    }

    /* Estilo para a barra de rolagem */
    table::-webkit-scrollbar {
        width: 12px;
    }

    table::-webkit-scrollbar-track {
        background: #296cb5;
    }

    table::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 6px;
    }

    table::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .pagination {
        margin-top: 20px;
    }

    .pagination ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .pagination li {
        margin: 0 5px;
    }

    .pagination li a {
        display: block;
        padding: 5px 10px;
        background-color: #f2f2f2;
        color: #333;
        text-decoration: none;
        border-radius: 3px;
        transition: background-color 0.3s;
    }

    .pagination li a:hover {
        background-color: #ddd;
    }
    body {
        background-color: #f8f9fa;
    }

    .card-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .card {
        flex: 1;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    body {
        background-color: #e9e9e9;
    }

    /* Estilo para compensar o espaço ocupado pelo menu lateral */
    .content2 {
        padding-left: 250px;
        /* Largura do menu lateral */
        padding-right: 20px;
        /* Margem direita */
    }

    /* Estilo para tornar o layout responsivo */
    @media only screen and (max-width: 768px) {
        .content2 {
            padding-left: 0;
            /* Remove o padding à esquerda em dispositivos móveis */
        }
    }

    .card2 {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 20px;
        margin-bottom: 10px;
    }

    .flex-container2 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .flex-item2 {
        width: calc(25% - 5px);
    }

    body {
        background-color: #f8f9fa;
    }

    .card-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .card {
        flex: 1;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .content2 {
        padding-left: 250px; /* Largura do menu lateral */
        padding-right: 20px; /* Margem direita */
    }

    @media only screen and (max-width: 768px) {
        .content2 {
            padding-left: 0; /* Remove o padding à esquerda em dispositivos móveis */
        }
    }

    .card2 {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 20px;
        margin-bottom: 10px;
    }

    .flex-container2 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .flex-item2 {
        width: calc(25% - 5px);
    }
    
   .container5 {
            max-width: 800px;
            margin: 20px auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            display: none; /* Inicialmente oculto */
        }

        .card5 {
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-bottom: 20px;
            flex-basis: calc(33.33% - 20px);
            padding: 10px;
            box-sizing: border-box;
        }

        .card5 img {
            max-width: 100%;
            height: auto;
            margin-bottom: 10px;
        }

        .card5 h2 {
            font-size: 0.92rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .card5 p {
            font-size: 0.78rem;
            line-height: 1.4;
        }

        .toggle-btn {
            background-color: #16385e;
            color: #fff;
            border: none;
            border-radius: 0px;
            padding: 10px 20px;
            cursor: pointer;
            
        }

        @media screen and (max-width: 768px) {
            .card5 {
                flex-basis: calc(50% - 20px);
            }
        }

        @media screen and (max-width: 480px) {
            .card5 {
                flex-basis: 100%;
            }
        }

        .toggle-btn i {
            margin-right: 5px;
        }

