
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #EAD196; /* kuning kayu */
}

.header-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4CAF50; /* hijau segar */
  padding: 10px;
  color: white;
  position: sticky; /* Ubah dari relative ke sticky */
  top: 0; /* Tetap di bagian atas saat scroll */
  z-index: 1000; /* Pastikan header di atas konten lain */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Tambahkan bayangan untuk efek kedalaman */
}

.header-bar h1 {
  margin: 0;
  font-size: 18px;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
}

td {
  border: 1px solid #444;
  min-width: 80px;
  height: 30px;
  padding: 4px;
}

td:focus {
  outline: 1.5px solid black;
  background:white;
}

.menu-container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}

#menuToggle {
  font-size: 24px;
  width: 40px;
  height: 40px;
  border: none;
  background: green;
  color: white;
  border-radius: 50%;
}

.menu-popup {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: green;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-direction: column;
  max-height: 70vh;
  overflow-y: auto;
  width: 220px;
  z-index: 1000;
}

.menu-popup button {
  margin: 3px 0;
  padding: 6px 10px;
  text-align: left;
  width: 100%;
  border: none;
  background: #4caf50;
  cursor: pointer;
}

.menu-popup button:hover {
  background: lime;
}

.divider {
  margin: 8px 0;
  border-top: 1px solid #ccc;
}

#excelList button {
  font-weight: bold;
  background: orange;
}

#excelList button:hover {
  background: #cce0ff;
}