html, body {
  height: 100%;
  margin: 0;
}

/* The Blocker Overlay */
#resolution-blocker {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #171717; /* Matches your sidebar */
    color: white;
    z-index: 9999; /* Sit on top of everything */
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.blocker-content h1 {
    color: #55ACEE;
    margin-bottom: 1rem;
}

/* The Logic: Show blocker if Width < 1050 OR Height < 300 */
@media (max-width: 1049px), (max-height: 299px) {
    #resolution-blocker {
        display: flex;
    }
    main {
        display: none; /* Hide the actual app content */
    }
}

body {
  font-family: "Inter", "Arial", "sans-serif";
  background-color: #2b2b2b;
  display: flex;
  justify-content: center; /* vertical centering of main container */
  align-items: center;     /* horizontal centering */
  height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transform: translateY(-50%); /* move slightly higher than center */
}

#header {
  color: #ffffff;
  font-size: 48px;
}

#getstartedbtn {
  background: linear-gradient(135deg, #5cb6ff, #66a7fc);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#getstartedbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

#getstartedbtn:active {
  transform: translateY(0);
  box-shadow: none;
}
