body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 20px;
}
.header {
  text-align: center;
  margin-bottom: 40px;
}
.header img {
  max-width: 200px;
}
.website-section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.website-section img {
  max-width: 150px;
}
.status-container {
  display: flex;
  gap: 10px;
}
.status {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 16px;
  color: white;
  white-space: nowrap;
}
.status.ready {
  background-color: #28a745;
  /* light blue */
  /* background-color: #17a2b8; */
}
.status.queued {
  /* background-color: #6c757d; */
  background-color: #fd7e14;
}
.status.in-progress {
  /* background-color: #007bff; */
  /* dark blue */
  background-color: #0056b3;
}
.status.completed {
  /* background-color: #155724; */
  /* nicer green that matches the blues */
  background-color: #28a745;
}
.status.failed {
  background-color: #dc3545;
}
.status.disabled {
  background-color: #6c757d;
}
.status.canceled {
  background-color: #6c757d;
}
.buttons {
  display: flex;
  gap: 10px;
}
button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #007bff;
  /* blue color that matches the other blues */
  /* background-color: #0056b3; */
  color: white;
}
button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}
button:not(:disabled):hover {
  background-color: #0056b3;
}
@media (max-width: 600px) {
  .website-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .status-container {
    align-items: center;
    margin: 10px 0;
  }
  .buttons {
    justify-content: center;
  }
}