* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'poppins', sans-serif
}

body {
  background: #f5f7fa;
  color: #333;
}

/* Main section links */
#main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 30px;
}

#main a {
  text-decoration: none;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  font-weight: bold;
  color: #2e7d32;
  transition: all 0.3s;
}

#main a:hover {
  background: #2e7d32;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Section body */
.body {
  background: var(--bg);
  padding: 30px;
  max-width: 1100px;
  margin: auto;
  font-family: Arial, sans-serif;
  color: var(--text-dark);
}

.body .icons {
  padding: 5px 0px;
  display: flex;
  gap: 8px;
}

/* Status labels */
.status {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
}

.status.good {
  background: #e6f4ea;
  color: #2e7d32;
}

.status.warn {
  background: #fff4e5;
  color: #e65100;
}

.status.bad {
  background: #fdecea;
  color: #c62828;
}
status[good]{color:var(--good)}
status[warn]{color:var(--warn)}
status[bad]{color:var(--bad)}
:root {
  --good: #2e7d32;
  --warn: #e65100;
  --bad: #c62828;
  --bg: #f5f7fa;
  --card-bg: #ffffff;
  --text-dark: #222;
  --text-light: #555;
}

.show-only-in-ph {
  display: none;
}