.avg-cod-card {
	border: 1px solid #e3e6ea;
	border-radius: 10px;
	background: #fff;
	padding: 20px 24px;
	margin: 0 0 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.avg-cod-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}
.avg-cod-card__title {
	margin: 0 0 12px;
	font-size: 1.25em;
}
.avg-cod-card__header .avg-cod-card__title {
	margin: 0;
}
.avg-cod-card__logo {
	max-height: 34px;
	width: auto;
}
.avg-cod-instructions {
	border-left: 4px solid #2271b1;
	background: #f6fafe;
}
.avg-cod-instructions .avg-cod-card__body {
	line-height: 1.6;
}

.avg-cod-detail-table {
	width: 100%;
	border-collapse: collapse;
}
.avg-cod-detail-table th,
.avg-cod-detail-table td {
	text-align: left;
	padding: 8px 10px;
	border-bottom: 1px solid #f0f1f3;
	vertical-align: top;
}
.avg-cod-detail-table th {
	width: 40%;
	color: #555;
	font-weight: 600;
}
.avg-cod-detail-table tr:last-child th,
.avg-cod-detail-table tr:last-child td {
	border-bottom: 0;
}

.avg-cod-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}
@media (max-width: 600px) {
	.avg-cod-form-grid {
		grid-template-columns: 1fr;
	}
}
.avg-cod-field {
	display: flex;
	flex-direction: column;
	margin: 0;
}
.avg-cod-field label {
	font-size: 0.85em;
	font-weight: 600;
	margin-bottom: 4px;
	color: #444;
}
.avg-cod-field input {
	width: 100%;
	padding: 9px 11px;
	border: 1px solid #ccd0d4;
	border-radius: 6px;
}
.avg-cod-proofs {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px dashed #e3e6ea;
}
.avg-cod-proofs__label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
}
.avg-cod-proof-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
.avg-cod-proof-thumb {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #e3e6ea;
}
.avg-cod-hint {
	font-size: 0.82em;
	color: #777;
	margin: 6px 0 0;
}
.avg-cod-submit {
	margin-top: 16px;
}

/* Receipt proof thumbnails with a remove (×) control. */
.avg-cod-proof-item {
	position: relative;
	display: inline-block;
	margin: 0 10px 10px 0;
	vertical-align: top;
}
.avg-cod-proof-item img {
	display: block;
	max-width: 120px;
	height: auto;
	border: 1px solid #ddd;
	border-radius: 6px;
}
.avg-cod-proof-remove {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 22px;
	height: 22px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #b32d2e;
	color: #fff;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.avg-cod-proof-remove:hover {
	background: #8a2322;
}
