body {
  font-family: system-ui, sans-serif;
  background: #f5f7fa;
  padding: 40px;
  color: #333;
}

h1 {
  margin-bottom: 20px;
  font-weight: 600;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
}

.status-item {
  background: white;
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 6px solid #ccc;
  transition: border-color 0.3s ease;
}

.url {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.online { background: #2ecc71; }
.offline { background: #e74c3c; }
.error { background: #f39c12; }
.checking { background: #bdc3c7; color: white; }

.border-online { border-color: #2ecc71; }
.border-offline { border-color: #e74c3c; }
.border-error { border-color: #f39c12; }
.border-checking { border-color: #bdc3c7; }

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* top‑right container */
#logos {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

#logos .top-logo {
  width: 160px !important;
  height: auto !important;
  opacity: 0.9;
}

/* footer logo bar */
#footer-logo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
  z-index: 999;
}

#footer-logo .footer-img {
  height: auto;
  width: 100%;
  opacity: 0.9;
}
