/**
 * Lexiata Manual Bank Slip - Frontend Styles
 * Version: 2.0.0
 */

/* --- Bank Details Card --- */
.lmbs-bank-details {
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lmbs-single-account {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	width: 100%;
	box-sizing: border-box;
}

ul.lmbs-bank-details-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

ul.lmbs-bank-details-list li {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 150px;
	padding: 10px;
	border-right: 1px solid #f0f0f0;
}

ul.lmbs-bank-details-list li:last-child {
	border-right: none;
}

ul.lmbs-bank-details-list li span {
	color: #888;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
	display: block;
}

ul.lmbs-bank-details-list li strong {
	color: #222;
	font-weight: 700;
	font-size: 15px;
	display: block;
}

/* --- Slip Upload Section --- */
.lmbs-slip-section {
	background: #fdfdfd;
	border: 2px dashed #0073aa;
	border-radius: 12px;
	padding: 40px 30px;
	text-align: center;
	margin-top: 30px;
}

.lmbs-slip-section h3 {
	margin-top: 0;
	color: #2c3e50;
	font-size: 20px;
	margin-bottom: 10px;
}

.lmbs-slip-status-badge {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 20px;
}

.lmbs-badge-verified {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.lmbs-badge-pending {
	background: #fff3cd;
	color: #856404;
	border: 1px solid #ffeeba;
}

.lmbs-badge-rejected {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* --- Buttons --- */
.lmbs-slip-upload-btn {
	background-color: #222;
	color: #fff;
	padding: 12px 30px;
	border-radius: 6px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	margin-top: 10px;
}

.lmbs-slip-upload-btn:hover {
	background-color: #0073aa;
	color: #fff;
}

.lmbs-credit {
	font-size: 12px;
	color: #aaa;
	margin-top: 25px;
	text-align: center;
}

.lmbs-credit a {
	color: #aaa;
	text-decoration: none;
}

.lmbs-credit a:hover {
	color: #0073aa;
}

/* --- Mobile Responsive --- */
@media (max-width: 600px) {
	ul.lmbs-bank-details-list li {
		border-right: none;
		border-bottom: 1px solid #f0f0f0;
		flex-basis: 100%;
		padding: 15px 0;
	}

	ul.lmbs-bank-details-list li:last-child {
		border-bottom: none;
	}

	.lmbs-slip-section {
		padding: 25px 15px;
	}
}
