body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: black;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

#haul-tracker {
  background: black;
  padding: 30px;
  margin: 30px 10px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  border-radius: 12px;
}

h1, h2, h3, p {
  text-align: center;
  color: white;
}

#current-time {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}


.log-buttons, .custom-log, .controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #eee;
}

.custom-log input {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#total-today {
  font-weight: bold;
  color: white;
}

ul#hourly-log {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
}

ul#hourly-log li {
  background: white;
  margin: 5px 0;
  padding: 8px 12px;
  border-radius: 6px;
  color: #333;
}

/* Collapsible Info Sections */
.collapsible {
  background-color: #222;
  color: gold;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  border-radius: 6px;
  margin-bottom: 5px;
}

.collapsible:hover {
  background-color: #333;
}

.content {
  padding: 10px 15px;
  display: none;
  overflow: hidden;
  background-color: #111;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Donation Buttons */
.donation-section {
  text-align: center;
  margin: 20px 0;
}

.donate-button {
  display: inline-block;
  background-color: gold;
  color: black;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 5px;
  transition: background 0.3s;
}

.donate-button:hover {
  background-color: orange;
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }
  
}

  h1, h2, h3 {
    font-size: 18px;
  }

  .donate-button {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
}