*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fdf6ec;
  color: #333;
}

.navbar {
  background: #7B4019;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-weight: bold;
  font-size: 20px;
}

.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  background: #f5b041;
  color: #fff;
}

.hero img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.form-container {
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-container a {
  font-size: 12px;
  display: inline-block;
  margin-bottom: 15px;
  color: #555;
  text-decoration: none;
}

.form-container a:hover {
  text-decoration: underline;
}

.form-container button {
  width: 100%;
  padding: 12px;
  background: #f5b041;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.form-container p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.alert-success {
  max-width: 400px;
  margin: 20px auto;
  padding: 15px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.alert-success {
  max-width: 400px;
  margin: 20px auto;
  padding: 15px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.error-message {
  color: #c0392b;
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 15px;
}

/* Table Styling */
.ob-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-family: 'Segoe UI', sans-serif;
  background-color: #7B4019;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.ob-table thead {
  background-color:  #7B4019;
}

.ob-table th,
.ob-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 5px solid #A25F35;
}

/* Status Color Highlighting */
.ob-status {
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.ob-status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.ob-status-processing {
  background-color: #cce5ff;
  color: #004085;
}

.ob-status-completed {
  background-color: #d4edda;
  color: #155724;
}

/* Button Styling */
.ob-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ob-button:hover {
  background-color: #0056b3;
}




