@media screen and (max-width: 600px) {
  .login {
    width: 90% !important;
    padding: 0 5%;
  }
  .login-form {
    width: 100%;
    margin: 10% auto 0 !important;
    padding: 0;
  }
  h1, h2, h3, h4, h5 {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }
  .button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  .event-toggle-button {
    width: calc(100% - 32px) !important;
    max-width: 320px;
    min-width: 0;
    margin: 0 auto !important;
  }
  #calendar {
    width: 95%;
    display: block;
    margin: 25px auto;
  }
  .modal {
    width: 90%;
    height: 90%;
  }
  .fc-view-harness {
    min-height: 65vh;
  }
}
@media screen and (max-width: 1000px) {
  .burger-menu {
    display: flex;
    cursor: pointer;
    margin-left: 20px;
    margin-bottom: 20px;
  }
  .nav-center {
    display: none;
  }
  .nav-right {
    display: none;
  }
  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background with opacity */
    z-index: 1000;
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .overlay ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }
  .overlay ul li {
    margin: 20px 0;
  }
  .overlay ul li a {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
  }
  .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
  }
  .wallet-buttons {
    display: block;
    width: 100%;
  }
  .wallet-button {
    padding-bottom: 20px;
  }
  .credit-home-panel {
    width: 90%;
  }
  .credit-home-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .credit-home-history-link {
    width: fit-content;
  }
  .credit-topup-home-btn {
    width: 100%;
    min-width: 0;
  }
  .art-grid {
    flex-direction: column;
    width: 70%;
    height: auto;
    gap: 20px;
  }
  .art-card {
    width: auto;
    height: 100%;
  }
  .art-card-image {
    height: auto;
  }
}
/* Desktop-specific styles */
@media screen and (min-width: 1001px) {
  .burger-menu {
    display: none;
  }
  .nav-center {
    display: flex;
  }
  .nav-right {
    display: block;
  }
  #add-to-home-install-button {
    max-width: 300px;
  }
}
