.ictir-block {
	--ictir-header-color: #1A2E4A;
	--ictir-accent-color: #E8631C;
	margin: 2rem 0;
}

.ictir-subtitle {
	margin: 0 0 1.4rem;
	color: #5c6470;
	font-size: 1rem;
}

.ictir-filter {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.ictir-filter label {
	font-weight: 600;
	color: var(--ictir-header-color);
	font-size: 0.95rem;
}

.ictir-year-select {
	padding: 0.45rem 0.9rem;
	border: 1px solid #d5d8dd;
	border-radius: 6px;
	background: #fff;
	font-size: 0.95rem;
	color: #2b2f36;
	cursor: pointer;
}

.ictir-year-select:focus {
	outline: 2px solid var(--ictir-accent-color);
	outline-offset: 1px;
}

.ictir-table-wrap {
	width: 100%;
	overflow-x: auto;
	border-radius: 10px;
	box-shadow: 0 1px 4px rgba(20, 30, 50, 0.08);
	border: 1px solid #e6e8eb;
}

.ictir-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.ictir-table thead th {
	background: var(--ictir-header-color);
	color: #fff;
	text-align: left;
	padding: 0.85rem 1.1rem;
	font-weight: 600;
	white-space: nowrap;
}

.ictir-table tbody td {
	padding: 0.8rem 1.1rem;
	border-top: 1px solid #edeef0;
	vertical-align: top;
	color: #2b2f36;
	line-height: 1.5;
}

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

.ictir-table tbody tr:hover {
	background: #fdf1e8;
}

.ictir-col-year {
	width: 90px;
	white-space: nowrap;
}

.ictir-col-client {
	width: 26%;
	font-weight: 600;
}

.ictir-year-badge {
	display: inline-block;
	min-width: 52px;
	text-align: center;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background: var(--ictir-accent-color);
	color: #fff;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
}

.ictir-empty {
	color: #5c6470;
	font-style: italic;
}

@media (max-width: 640px) {
	.ictir-table thead {
		display: none;
	}
	.ictir-table, .ictir-table tbody, .ictir-table tr, .ictir-table td {
		display: block;
		width: 100%;
	}
	.ictir-table tbody tr {
		padding: 0.9rem 1.1rem;
		border-top: 1px solid #edeef0;
	}
	.ictir-table tbody td {
		border: none;
		padding: 0.2rem 0;
	}
	.ictir-col-client {
		font-size: 1.02rem;
	}
	.ictir-col-project {
		color: #4a5058;
	}
}


table {
    margin: 0 !important;
}