.navbar-custom {
  background-color: #1d1f21 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Base style (desktop) */
.navbar-drawer {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Mobile style */
@media (max-width: 767.98px) {
  .navbar-drawer {
    background-color: #2c2f33 !important;
    padding: 1rem;
    margin-top: 10px;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
  }

  code {
    word-break: break-word;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .input-group > input,
  .input-group > button {
    width: 100% !important;
    display: block;
  }

  .input-group > button {
    margin-top: 0.5rem;
  }

  .table thead {
    font-size: 0.8rem;
  }

  .table td,
  .table th {
    font-size: 0.75rem;
    white-space: normal;
  }

  .container {
    padding: 1rem 0.75rem;
  }
}