	/* Loader animation */
	.funding-wall-loader {
		border: 4px solid #f3f3f3;
		border-top: 4px solid #3498db;
		border-radius: 50%;
		width: 10px;
		height: 10px;
		animation: funding-wall-spin 1s linear infinite;
		margin: 3px auto;
	}

	@keyframes funding-wall-spin {
		0% {
			transform: rotate(0deg);
		}

		100% {
			transform: rotate(360deg);
		}
	}

	/* Layout utilities */
	.funding-wall-flex {
		display: flex;
	}

	.funding-wall-flex-row {
		flex-direction: row;
	}

	.funding-wall-justify-center {
		justify-content: center;
	}

	.funding-wall-align-center {
		align-items: center;
	}

	.funding-wall-gap-2 {
		gap: 1rem;
	}

	/* Contributor item styles */
	.funding-feed-container {
		margin-bottom: 2rem;
	}

	.funding-feed-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 0.3rem;
	}

	.funding-feed-row .left {
		flex: 1;
	}

	.funding-feed-row .right {
		text-align: right;
	}

	.funding-feed-row .name {
		font-weight: 600;
		margin: 0;
	}

	.funding-feed-row .date {
		color: #666;
		font-size: 0.9em;
		margin-top: 0;
	}

	.funding-feed-row .amount {
		font-weight: 600;
		font-size: 1em;
		margin: -14px 0 0.20rem 0;
	}

	.funding-feed-status {
		padding: 5px 9px;
		border-radius: 4px;
		font-size: 0.8em;
		border: none;
	}

	.button-pending {
		background-color: #ffd54f;
		color: #5d4037;
	}

	.button-paid {
		background-color: #81c784;
		color: #fff;
	}

	.funding-wall-message::before {
		content: "";
		position: absolute;
		top: -10px;
		left: 20px;
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 10px solid #f7f7f7;
	}

	.funding-wall-message {
		margin-bottom: 1rem;
		border: 1px solid #f7f7f7;
		padding: 12px;
		border-radius: 4px;
		margin-top: -4px;
		/* Increased to make room for triangle */
		background-color: #fafafa;
		position: relative;
		font-size: 0.88rem;
	}

	/* Navigation buttons */
	.funding-wall-button {
		background: linear-gradient(45deg, #4ca1af, #c4e0e5);
		border: none;
		border-radius: 8px;
		color: #fff;
		padding: 8px 16px;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		transition: background 0.3s ease;
	}

	.funding-wall-button:hover {
		background: linear-gradient(45deg, #3498db, #2ecc71);
	}

	.funding-wall-button:disabled,
	.funding-wall-button.funding-wall-disabled {
		background: grey;
		cursor: not-allowed;
	}

	.funding-wall-button .icon {
		width: 1em;
		height: 1em;
		vertical-align: middle;
	}

	.funding-wall-pagination {
		display: flex;
		justify-content: space-between;
		margin-top: 1rem;
		gap: 1rem;
	}

	.funding-wall-empty {
		text-align: center;
		padding: 2rem;
		background-color: #f9f9f9;
		border-radius: 8px;
		color: #666;
	}