.gz-attendance-wrap {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 20px;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  text-align: center;
}

.gz-attendance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}

.gz-weekdays, .gz-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.gz-weekdays div {
  font-weight: bold;
  color: #999;
}

.gz-day {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  font-size: 14px;
}

.gz-day.today {
  background: #2b72ff;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 0 2px rgba(43,114,255,0.3);
}

.gz-attendance-footer {
  margin-top: 16px;
}

#gz-checkin-btn {
  background: #2b72ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

#gz-checkin-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#gz-status-text {
  display: block;
  margin-top: 8px;
  color: #333;
  font-size: 14px;
}
