* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffaf6;
  color: #4b2e2e;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4b3e37;
  padding: 10px 20px;
  color: white;
  height: 60px;
}

.nav-logo {
  height: 90px;
}

.navbar-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.nav-home {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background-color: #8b5e3c;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-home:hover {
  background-color: #a16d4b;
}

.menu-links {
  background-color: #efd9c4;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
}

.menu-links a {
  margin: 0 15px;
  color: #5c4033;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-links a:hover {
  color: #7b4a2b;
}

.menu-section {
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.menu-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #4b3e37;
}

.menu-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 20px;
  color: #6e4f3a;
}

.time-label {
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 8px;
  color: #7a5c4c;
}

.table-container {
  margin-top: 20px;
  overflow-x: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 300px;
}

table thead {
  background-color: #63564f;
  color: white;
}

table th,
table td {
  padding: 14px 18px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

table tr:hover {
  background-color: #f5e8dd;
}

.no-items {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-title {
    font-size: 1.4rem;
  }

  .menu-links a {
    margin: 0 8px;
    font-size: 0.95rem;
  }

  table th,
  table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    height: 50px;
  }

  .nav-home {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .menu-section h2 {
    font-size: 1.4rem;
  }
}
.tab-buttons {
  text-align: center;
  margin-bottom: 20px;
}

.tab-buttons button {
  width: 160px; /* fixed width for uniform size */
  height: 45px;
  background-color: #6e4f3a;
  color: white;
  border: none;
  margin: 0 5px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
  vertical-align: middle;
}

.tab-buttons button:hover {
  background-color: #8a6750;
  transform: scale(1.05);
}

.tab-buttons .active {
  background-color: #4b3e37;
}

