/* -------------------------
   Subway247 Dashboard & Services Styles
------------------------- */
.subway-app {
  display: flex;
  min-height: 100vh;
  background: #f5f7fa;
  font-family: Arial, sans-serif;
}

.subway-sidebar {
  width: 240px;
  background: #111;
  color: #fff;
  padding: 20px;
}

.subway-sidebar a {
  display: block;
  color: #fff;
  margin: 12px 0;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.subway-sidebar a:hover {
  color: #1abc9c;
}

.subway-content {
  flex: 1;
  padding: 30px;
  background: #f5f7fa;
}

.subway-content h1 {
  margin-bottom: 20px;
}

.subway-content form {
  margin-top: 15px;
}

.subway-content input[type="number"] {
  padding: 8px 10px;
  width: 150px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.subway-content button {
  padding: 8px 15px;
  background-color: #1abc9c;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.subway-content button:hover {
  background-color: #16a085;
}

/* Services buttons container */
.subway-content form button {
  display: block;
  width: 250px;
  text-align: left;
  margin: 10px 0;
}

.subway-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.subway-content table th,
.subway-content table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.subway-content table th {
  background-color: #1abc9c;
  color: #fff;
  text-align: left;
}
/* Services Grid */
.subway-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.subway-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.subway-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.subway-service-card h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.subway-service-price {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 15px;
}

.subway-service-card button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.subway-service-card button:hover {
    background: #1e40af;
}
/* My Orders Table */
.subway-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.subway-orders-table th,
.subway-orders-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.subway-orders-table th {
    background-color: #2563eb;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.subway-orders-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.subway-orders-table tr:hover {
    background-color: #f1f5f9;
}

.subway-orders-table .status-pending {
    color: #f59e0b; /* yellow/orange */
    font-weight: bold;
}

.subway-orders-table .status-processing {
    color: #3b82f6; /* blue */
    font-weight: bold;
}

.subway-orders-table .status-completed {
    color: #16a34a; /* green */
    font-weight: bold;
}