html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

calcite-shell {
  height: 100%;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #f4f4f4;
}

.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
  font-family: var(--calcite-sans-family);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.title {
  color: #007ac2;
  margin-top: 5px;
}

.history {
  font-size: 0.85rem;
  color: #666;
  margin: 15px 0;
  line-height: 1.4;
}
/* Hide the hamburger button on Desktop */
#menu-toggle { display: none; }

/* MOBILE RULES (Screens smaller than 800px) */
@media (max-width: 800px) {
  /* Hide the long top menu items */
  calcite-menu[slot="content-start"] {
    display: none !important;
  }
  
  /* Show the hamburger button */
  #menu-toggle {
    display: flex !important;
  }

  /* Adjust the card so it doesn't get cut off at the top */
  .main-container {
    align-items: flex-start;
    padding-top: 40px;
    overflow-y: auto;
  }
}