.time-controls {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid var(--border);
	background: var(--panel);
	padding: 0.75rem 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.time-controls .muted {
	color: var(--muted);
}

.member-card {
	border: 1px solid var(--border);
	background: var(--panel);
	border-radius: 8px;
	margin-bottom: 1rem;
}

.member-card summary {
	cursor: pointer;
	padding: 0.75rem 1rem;
	font-weight: 600;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	align-items: baseline;
}

.member-card[open] summary {
	border-bottom: 1px solid var(--border);
}

.entries {
	list-style: none;
	margin: 0;
	padding: 0.5rem 1rem 1rem;
}

.entries li {
	display: grid;
	grid-template-columns: 120px 1fr auto;
	gap: 0.5rem 1rem;
	padding: 0.5rem 0;
	border-bottom: 1px dashed var(--border);
}

.entries li:last-child {
	border-bottom: none;
}

.issue-key {
	font-weight: 700;
	color: var(--link);
}

.task-title {
	color: var(--text);
}

.duration {
	color: var(--muted);
	white-space: nowrap;
	justify-self: end;
}

.empty {
	color: var(--muted);
	padding: 0.75rem 1rem 1rem;
}

.badge {
	background: #0b1220;
	border: 1px solid var(--border);
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	font-size: 0.9rem;
	color: var(--muted);
}

@media (max-width: 700px) {
	.entries li {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.duration {
		justify-self: start;
	}
}