body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #211c2b, #000000);
  padding: 25px;
  color: #e6d9ff;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}


.menu,
.section {
  width: 100%;
  max-width: 420px; 
}


h1 {
  text-align: left;
  padding: 25px;
  color: #f9bcff;
  letter-spacing: 1px;
}


.menu,
.section {
  background: #3b3b4e;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(128, 0, 255, 0.25);
  border: 1px solid #2a1a3d;
}


input {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  border-radius: 18px;
  border: 1px solid #3d235f;
  background: #0f0f16;
  color: #e6d9ff;
  outline: black;
}

input::placeholder {
  color: #9a7fd1;
}


button {
  width: 100%;
  margin: 6px 0;
  padding: 10px 16px;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #201a2e, #9b5cff);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(155, 92, 255, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 26px rgba(155, 92, 255, 0.85);
  filter: brightness(1.1);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(155, 92, 255, 0.5);
}


.hidden {
  display: none;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: #0f0f16;
  color: #e6d9ff;
}

table,
th,
td {
  border: 1px solid #3d235f;
}

th {
  background: #2a0f4a;
  color: #d7b9ff;
}

th,
td {
  padding: 8px;
  text-align: center;
}

.section {
  animation: slideIn 0.4s ease forwards;
}

/* SLIDE BAGO DESIGN */
.hidden {
  display: none;
}


@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}