/* tablet.css */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: var(--primary-color);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .rates-table th,
  .rates-table td {
    font-size: 18px;
    padding: 8px;
  }
}
