:root {
	--bg: #0f172a;
	--text: #e2e8f0;
	--accent: #38bdf8;
	--green: #22c55e;
	--yellow: #eab308;
	--orange: #f97316;
	--red: #ef4444;
	--muted: #94a3b8;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: system-ui, -apple-system, sans-serif;
	background: var(--bg);
	color: var(--text);
	/*min-height: 100vh;*/
	/*display: flex;
	flex-direction: column;*/
	align-items: center;
	justify-content: center;
	/*padding: 20px;*/
	text-align: center;
}
.container {
	/*max-width: 1200px;*/
	width: 100%;
}
.header {
	width: 100%;
	height: 150px;
	background: red;
}

.col {
	float: left;
	width: 25%;
	font-size: 40px;
	padding-top: 18px;
	height: 100%;
}

.col:nth-of-type(2) {
	width: 50%;
}

.route {
	height: 118px;
	background: #808080;
	color: #000000;
}
.route:nth-of-type(2n+1) {
	background: white;
}

/*
.clock {
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 10px;
  color: var(--text);
  margin: 1rem 0 1.5rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 10px 40px rgba(0,0,0,0.7);
}
.notice {
  font-size: 4.5rem;
  font-weight: 800;
  padding: 1.2rem 3rem;
  border-radius: 24px;
  margin: 0 0 3rem;
  min-width: 700px;
  box-shadow: 0 12px 45px rgba(0,0,0,0.6);
  line-height: 1.2;
  display: none; / * hidden by default * /
}
.notice.lunch {
  background: var(--yellow);
  color: #000;
  display: inline-block;
}
.notice.off {
  background: var(--red);
  color: #fff;
  display: inline-block;
}

/ * Staff section * /
.staff-container {
  margin: 3rem 0 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2.8rem;
  max-width: 1200px;
}
.staff-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}
.staff-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid transparent;
  transition: all 0.35s ease;
  cursor: pointer;
  filter: grayscale(100%) opacity(0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.staff-icon.active {
  filter: grayscale(0%) opacity(1);
  box-shadow: 0 16px 50px rgba(34,197,94,0.7);
  transform: scale(1.1);
}
.staff-icon:hover {
  transform: scale(1.14);
}
.staff-status {
  margin-top: 1.3rem;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border-radius: 20px;
  background: rgba(0,0,0,0.5);
  min-width: 160px;
  text-align: center;
  letter-spacing: 0.8px;
}
.status-on-duty  { background: var(--green);  color: #000; }
.status-onsite   { background: var(--yellow); color: #000; }
.status-off      { background: var(--red);    color: #fff; }
.status-break    { background: var(--orange); color: #fff; }

footer {
  margin-top: auto;
  padding: 5rem 0 2rem;
  visibility: hidden;
}
*/