.s4k-store-funds-section {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 30px;
}

.s4k-balance-display {
	text-align: center;
	margin-bottom: 30px;
	padding: 20px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.s4k-balance-amount {
	font-size: 2.5em;
	font-weight: 700;
	color: #28a745;
	margin: 10px 0;
}

.s4k-balance-label {
	font-size: 1.1em;
	color: #6c757d;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.s4k-transactions-section {
	background: #fff;
	border-radius: 6px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.s4k-transactions-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
}

.s4k-transactions-table th {
	background: #343a40;
	color: #fff;
	padding: 12px 15px;
	text-align: left;
	font-weight: 600;
	border: none;
}

.s4k-transactions-table td {
	padding: 12px 15px;
	border-bottom: 1px solid #dee2e6;
}

.s4k-transactions-table tr:last-child td {
	border-bottom: none;
}

.s4k-transactions-table tr:hover {
	background: #f8f9fa;
}

.s4k-transactions-table .funds {
	color: #28a745;
	font-weight: 600;
}

.s4k-transactions-table .funds::before {
	content: "+";
}

.s4k-transactions-table .debit {
	color: #dc3545;
	font-weight: 600;
}

.s4k-load-more-container {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #dee2e6;
}

.s4k-load-more-btn {
	background: #007cba;
	color: #fff;
	border: none;
	padding: 10px 25px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s ease;
}

.s4k-load-more-btn:hover {
	background: #005a87;
}

.s4k-load-more-btn:disabled {
	background: #6c757d;
	cursor: not-allowed;
}

.s4k-no-transactions {
	text-align: center;
	padding: 40px 20px;
	color: #6c757d;
}

.s4k-no-transactions .dashicons {
	font-size: 48px;
	margin-bottom: 15px;
	color: #dee2e6;
}

/* Responsive design */
@media (max-width: 768px) {
	.s4k-store-funds-section {
		padding: 15px;
		margin-bottom: 20px;
	}

	.s4k-balance-amount {
		font-size: 2em;
	}

	.s4k-transactions-table {
		font-size: 14px;
	}

	.s4k-transactions-table th,
	.s4k-transactions-table td {
		padding: 8px 10px;
	}

	.s4k-transactions-table thead {
		display: none;
	}

	.s4k-transactions-table tr {
		display: block;
		margin-bottom: 15px;
		border: 1px solid #dee2e6;
		border-radius: 4px;
	}

	.s4k-transactions-table td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid #dee2e6;
	}

	.s4k-transactions-table td:last-child {
		border-bottom: none;
	}

	.s4k-transactions-table td::before {
		content: attr(data-label);
		font-weight: 600;
		color: #495057;
	}
}

/* Loading states */
.s4k-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid #007cba;
	border-radius: 50%;
	animation: s4k-spin 1s linear infinite;
	margin-right: 10px;
	vertical-align: middle;
}

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

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

.s4k-loading-text {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #6c757d;
}
