.table-wrapper {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	margin-bottom: 40px;
}

.styled-table {
	width: 100%;
	border-collapse: collapse;
}

.styled-table thead tr {
	background: var(--gradient);
	color: #fff;
}

.styled-table th {
	padding: 16px 24px;
	font-weight: 700;
	text-align: left;
	font-size: 0.95rem;
}

.styled-table th:last-child {
	text-align: right;
}

.styled-table td {
	padding: 14px 24px;
	font-size: 0.95rem;
}

.styled-table td:last-child {
	text-align: right;
	font-weight: 500;
}

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

.styled-table tbody tr:nth-child(odd) {
	background: #fff;
}

.styled-table .total-row {
	border-top: 2px solid var(--color-border);
	font-weight: 700;
	font-size: 1.1rem;
}

.styled-table .total-row td:last-child {
	font-weight: 800;
}

.styled-table .total-row td:last-child .gradient-text {
	display: inline;
}

.benefits-box {
	background: #fff;
	border-left: 4px solid;
	border-image: var(--gradient) 1;
	padding: 24px 32px;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	margin-bottom: 40px;
}

.benefits-box li {
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 8px;
	line-height: 1.7;
}

.bank-box {
	background: var(--color-card);
	border-radius: var(--radius-md);
	padding: 20px;
	text-align: center;
	margin-top: 24px;
}

.bank-box p {
	margin: 4px 0;
}

.bank-box .bank-name {
	font-weight: 700;
	font-size: 1.1rem;
}

.bank-box .bank-number {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 8px 0;
}

/* Align containers with vesak-theme */
#event-budget .container,
#terms-payment .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Replaces: style="font-family: ...; font-size: 1.5rem; margin-bottom: 24px" on .gradient-text h3 */
.terms-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* Replaces: style="font-weight: 700; margin-bottom: 8px" on section h4 elements */
.terms-subheading {
    font-weight: 700;
    margin-bottom: 8px;
}

/* Replaces: style="line-height: 1.8; margin-bottom: 24px" on paragraph text */
.terms-text {
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Replaces: style="line-height: 1.8; margin-bottom: 12px" on the shorter paragraph */
.terms-text--tight {
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Replaces: style="margin-left: 20px; margin-bottom: 24px" on the restrictions ul */
.terms-list {
    margin-left: 20px;
    margin-bottom: 24px;
}

.terms-list li {
    list-style: disc;
    margin-bottom: 6px;
    line-height: 1.7;
}