html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #e9edf3;
  color: #1b1b1b;
  line-height: 1.6;
}

header {
  background: #102a43;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.logo {
  font-weight: 600;
  font-size: 1.4em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #f2a154;
}

.orders-section {
  padding: 70px 10%;
  text-align: center;
}

.orders-section h2 {
  color: #102a43;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 10px;
}

.orders-section .intro {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.orders-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.order-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.order-header h3 {
  font-size: 1.1rem;
  color: #102a43;
}

.status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  color: #ffffff;
}

.status.pending {
  background: #e67e22;
}

.status.accepted {
  background: #27ae60;
}

.order-card p {
  margin: 6px 0;
  font-size: 0.95em;
}

.order-card .arrival {
  margin-top: 8px;
  color: #2c3e50;
  font-weight: 500;
}

.order-actions {
  margin-top: 15px;
  text-align: right;
}

.cancel-btn {
  background: #e74c3c;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 500;
  transition: background 0.3s;
}

.cancel-btn:hover {
  background: #c0392b;
}

footer {
  background: #08121f;
  color: #ffffff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9em;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .orders-section {
    padding: 50px 6%;
  }

  .order-card {
    padding: 18px;
  }

  .order-header h3 {
    font-size: 1rem;
  }

  .cancel-btn {
    font-size: 0.85em;
    padding: 7px 12px;
  }
}
