body {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}
.wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}
.logo {
  height: 80px;
  margin: 20px;
}
.banner {
  background: #29d391;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: left;
  padding: 15px 30px;
  border-radius:5px;
}
.uptime-note {
  font-size: 0.9rem;
  text-align: right;
  color: #555;
  padding: 5px 30px;
}
.components {
  max-width: 800px;
  margin: 20px auto;
}
.component {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
}
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.name {
  font-size: 1rem;
  font-weight: bold;
}
.status {
  font-size: 0.9rem;
  color: #29d391;
}
.bar {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.day {
  flex: 1;
  height: 30px;
  background: #29d391;
  margin-right: 1px;
}
.day:hover {
  opacity: 0.8;
}
.legend {
  font-size: 0.8rem;
  color: #777;
  display: flex;
  justify-content: space-between;
}
.tooltip {
  position: absolute;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: 6px;
  pointer-events: none;
  display: none;
  box-shadow: 0px 2px 12px rgba(0,0,0,.15);
  max-width: 250px;
}
.tooltip h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 4px 0;
}
.tooltip p {
  font-size: 0.85rem;
  margin: 0;
}
.tooltip::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.incidents {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 15px;
}
.incidents h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.incident-item {
  padding: 10px 0;
}
.incident-item .date {
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
}
.incident-item .description {
  font-size: 0.9rem;
  color: #777;
}
