body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f3f9fc;
}

.container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

h2 {
  color: #007BFF;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table th, table td {
  padding: 10px;
  border: 1px solid #d0e3f0;
  text-align: left;
}

table th {
  background-color: #eaf4fd;
  color: #007BFF;
}

.btn {
  background-color: #007BFF;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: #005ecb;
}

.card {
  background-color: #e6f1fb;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #005ecb;
  text-decoration: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: background 0.2s;
}

.card:hover {
  background-color: #d3e8fc;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

code {
  background: #f1f5f8;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

input, select, textarea {
  padding: 8px;
  width: 100%;
  border: 1px solid #d0e3f0;
  border-radius: 6px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

form label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.refunded {
  color: #c0392b;
  font-weight: bold;
}
.success {
  color: #27ae60;
  font-weight: bold;
}
table {
  margin: 30px auto;
  border-collapse: collapse;
  width: 90%;
  max-width: 1000px;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

table th {
  background-color: #f5f5f5;
}
