* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  height: auto;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-bg);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-y: auto;
  overflow-x: hidden;
}

.container {
  padding: 2.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 640px) {
  .container {
    padding: 1.5rem 1rem;
  }
}

#main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.status-valid::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 4px;
  border-left: 2px solid #059669;
  border-bottom: 2px solid #059669;
  transform: rotate(-45deg);
  margin-right: 6px;
  margin-bottom: 1px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
