body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
}

.card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

button,
input[type="button"],
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  filter: brightness(0.95);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.josh { background: #f97316 !important; }
.dust { background: #a855f7 !important; }
.hope { background: #3b82f6 !important; }
.larry { background: #22c55e !important; }
.mimiges { background: #14b8a6 !important; }
.john { background: #ec4899 !important; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.day-cell {
  min-height: 130px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
}

.day-number {
  font-weight: bold;
  margin-bottom: 8px;
}

.day-task {
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 8px;
  margin-bottom: 4px;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-grid {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: white;
  box-sizing: border-box;
  color: #1e293b;
}

textarea {
  min-height: 100px;
}

.task-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  background: white;
}

.task-card.completed {
  opacity: 0.6;
}

.task-user {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
}

.task-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.task-meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
}

.step-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-item.done {
  opacity: 0.7;
  text-decoration: line-through;
}

#prevMonth,
#todayBtn,
#nextMonth {
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 800px) {
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}