/* Global Styles */
body {
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  /* Light blue gradient background */
  background: linear-gradient(135deg, #d0e8ff, #a6d8ff);
  color: #333;
}

.container {
  max-width: 700px;
  margin: 30px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Header */
.logo-container {
  margin-bottom: 20px;
}

#logo {
  width: 400px;  /* Larger logo for clarity */
  height: auto;
  display: block;
  margin: auto;
}

.address {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.hotline {
  font-weight: bold;
  color: #c62828;
}

/* Date & Time (Plain Text with Emojis) */
.datetime p {
  font-size: 18px;
  margin: 5px 0;
  color: #1565c0;
}

/* Fuel Title */
.fuel-title {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 20px;
}

/* Make the fuel pump emoji larger */
.emoji {
  font-size: 48px; /* Increase emoji size */
  vertical-align: middle;
  margin-right: 10px;
}

/* Fuel Grid */
.fuel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.fuel-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.fuel-name {
  font-size: 20px;
  color: #ffa726; /* Light orange for names */
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.fuel-price {
  font-size: 22px;
  color: #4caf50; /* Green for prices */
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}

.footer a,
.view-all {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
