/* Contest Dashboard — стили, адаптированные под тему TownPress.
 * Шрифт и базовую типографику наследуем от темы (Roboto Condensed
 * подключён в townpress-child/style.css).
 */

.cd-dashboard {
	margin: 1rem 0;
}

/* ---------- Панель управления ---------- */

.cd-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

#cd-search {
	flex: 1 1 260px;
	max-width: 420px;
	padding: 0.5rem 0.75rem;
	font-family: inherit;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: #fff;
	color: inherit;
}

.cd-btn-primary {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	font-family: inherit;
	font-size: 1rem;
	border: none;
	border-radius: 3px;
	background: #00a0d2;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.cd-btn-primary:hover {
	background: #0087b3;
}

.cd-btn-primary[disabled] {
	opacity: 0.6;
	cursor: wait;
}

/* ---------- Статусные строки ---------- */

.cd-status {
	min-height: 1.4em;
	margin-bottom: 0.5rem;
	color: #555;
}

.cd-error-box {
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	border-left: 4px solid #dc3232;
	background: #fbeaea;
	color: #444;
}

.cd-meta-line {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #777;
}

.cd-empty-box {
	padding: 1.5rem;
	border: 1px dashed #ccc;
	text-align: center;
	color: #666;
}

/* ---------- Блоки годов и категории ---------- */

.cd-year-block {
	margin-bottom: 2rem;
}

.cd-year-title {
	margin: 0 0 0.75rem;
}

.cd-year-badge {
	display: inline-block;
	padding: 0.15rem 0.9rem;
	font-size: 1.4rem;
	font-weight: 700;
	background: #f2f2f2;
	border-radius: 3px;
}

/* ---------- Таблицы ---------- */

.cd-table-wrap {
	overflow-x: auto;
	margin-bottom: 1rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

table.cd-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Roboto Condensed', Arial, sans-serif;
}

table.cd-table th,
table.cd-table td {
	padding: 0.45rem 0.6rem;
	text-align: center;
	border: 1px solid #e0e0e0;
}

table.cd-table thead th {
	background: #f2f2f2;
	font-weight: 700;
	white-space: nowrap;
}

/* Ярлык категории — ячейка над первым столбцом таблицы */
table.cd-table th.cd-cat-head {
	background: #5aa7d0;
	color: #fff;
	text-align: center;
	font-size: 0.75rem;
	letter-spacing: 0;
	padding-left: 0;
}

table.cd-table th.cd-cat-head.m {
	background: #a48ed8;
}

table.cd-table tbody tr:nth-child(even) {
	background: #fafafa;
}

table.cd-table td.cd-call-cell,
table.cd-table th:nth-child(3) {
	white-space: nowrap;
}

a.cd-call {
	font-weight: 700;
	color: #0073aa;
	text-decoration: none;
}

a.cd-call:hover {
	text-decoration: underline;
}

tr.cd-leader td {
	background: #fdf6dd;
	font-weight: 700;
}

.cd-no-match {
	padding: 0.6rem 1rem;
	border: 1px dashed #ddd;
	color: #888;
	font-size: 0.9rem;
}
