.today-dashboard {
  display: grid;
  gap: 14px;
}

.today-card {
  border: 1px solid rgba(255, 122, 26, 0.22);
  background: linear-gradient(145deg, rgba(32, 15, 18, 0.94), rgba(12, 8, 12, 0.96));
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.today-card.partner {
  border-color: rgba(180, 92, 255, 0.28);
  background: linear-gradient(145deg, rgba(24, 13, 34, 0.94), rgba(11, 8, 14, 0.96));
}

.today-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.today-card-head h3 {
  margin: 2px 0 0;
  font-size: 20px;
}

.today-card-head small,
.today-updated {
  color: var(--muted);
  font-size: 12px;
}

.today-role-grid,
.today-status-list {
  display: grid;
  gap: 10px;
}

.today-role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.today-role-button,
.today-status-button {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  border-radius: 18px;
  padding: 12px;
  text-align: left;
  font: inherit;
}

.today-role-button.active,
.today-status-button.yes {
  border-color: rgba(255,122,26,0.72);
  background: radial-gradient(circle at 15% 0%, rgba(255,122,26,0.24), rgba(255,255,255,0.04));
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.12);
}

.today-status-button.mood {
  border-color: rgba(255,255,255,0.16);
}

.today-status-button.no {
  opacity: 0.66;
}

.today-status-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
}

.today-status-title span:last-child {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.today-status-button.yes .today-status-title span:last-child {
  color: #ffd2a8;
}

.today-status-description,
.today-partner-comment {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.today-partner-grid {
  display: grid;
  gap: 8px;
}

.today-partner-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.today-partner-row:last-child {
  border-bottom: 0;
}

.today-partner-row strong {
  font-size: 14px;
}

.today-partner-row span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.today-save-line {
  min-height: 18px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

button.today-saving {
  opacity: 0.82;
  pointer-events: none;
}

@media (max-width: 390px) {
  .today-role-grid {
    grid-template-columns: 1fr;
  }
}
