/* Define the custom font faces with multiple formats for cross-browser compatibility */
@font-face {
	font-family: 'outfit';
	src: url('fonts/Outfit-VariableFont_wght.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap; /* Optional: controls how font is displayed while loading */
}

@font-face {
	font-family: 'outfit';
	src: url('fonts/static/Outfit-Bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* Base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-height: none !important;
}

:root {
	--primary: #025D6F;
	--primary-dark: #003438;
	--secondary: #32494C;
	--accent: #f72585;
	--success: #075e24;
	--light: #f8f9fa;
	--dark: #1a1a1a;
	--gray: #6c757d;
	--card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	--button-shadow: 0 4px 8px rgba(67, 97, 238, 0.2);
	--button-primary: #F5A009;
	--button-color: #FFFFFF;
	--border-radius: 16px;
	--danger: #b40000;
}
a {
	text-decoration: none !important;
}

body {
	background-color: #025D6F;
	color: var(--dark);
	line-height: 1.6;
	min-height: 100vh;
	padding: 0;
	margin: 0;
	background-image: url('dot.png');
}

select {
    width: 100%;
    box-sizing: border-box;
}

select option {
    display: block;
    width: 100%;
}

.container {
	max-width: 100%;
	padding: 0px 10px 35px;
	margin-bottom: 30px;
}

.section-next {
	background-color: #FFFFFF;
}
/* Header */
.app-header {
	background: linear-gradient(135deg, #025D6F, #025D6F);
	color: white;
	padding: 20px 16px;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.btn {
	padding: 12px 24px;
	border-radius: 12px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
}

.btn-primary {
	background: var(--button-primary);
	color: var(--button-color);
}

.btn-secondary {
	background: var(--light);
	color: var(--dark);
}

.action-buttons-shopper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 20px;
}

.btn-transaction {
	background: #F5A009;
	color: white;
	border: none;
	padding: 16px;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--box-shadow);
	transition: background 0.3s;
}

.btn-transaction:hover {
	background: #32494C;
}

.btn-transaction i {
	margin-right: 10px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.app-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.2rem;
}


.nav-link {
	color: white;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.nav-link:hover, .nav-link.active {
	background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
	background: white;
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: var(--card-shadow);
	text-align: center;
}

.hero-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--dark);
}

.hero-subtitle {
	color: var(--gray);
	margin-bottom: 25px;
	font-size: 1rem;
}

.hero-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 25px;
}

.hero-image {
	width: 100%;
	height: 160px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.hero-image-1 {
	background: linear-gradient(45deg, #4361ee, #4cc9f0);
}

.hero-image-2 {
	background: linear-gradient(45deg, #7209b7, #f72585);
}

.image-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}

.image-placeholder i {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.hero-cta {
	background: var(--primary);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-cta:active {
	transform: scale(0.98);
	background: var(--primary-dark);
}

/* Features Section */
.features-section {
	margin-bottom: 25px;
}

.section-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark);
	padding-left: 10px;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.feature-card {
	background: white;
	border-radius: 16px;
	padding: 20px;
	box-shadow: var(--card-shadow);
	text-align: center;
}

.feature-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 1.5rem;
}

.feature-1 .feature-icon {
	background: rgba(67, 97, 238, 0.2);
	color: var(--primary);
}

.feature-2 .feature-icon {
	background: rgba(247, 37, 133, 0.2);
	color: var(--accent);
}

.feature-3 .feature-icon {
	background: rgba(76, 201, 240, 0.2);
	color: var(--success);
}

.feature-4 .feature-icon {
	background: rgba(114, 9, 183, 0.2);
	color: var(--secondary);
}

.feature-title {
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 1rem;
}

.feature-desc {
	color: var(--gray);
	font-size: 0.85rem;
}

/* About Us Section */
.about-section {
	background: white;
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: var(--card-shadow);
	width: 100%;
}

.about-content {
	display: flex;
	flex-direction: column;
}

.about-text {
	color: var(--gray);
	line-height: 1.7;
}

.about-list {
	padding-left: 20px;
	color: var(--gray);
}

.about-list li {
	margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
	background: white;
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: var(--card-shadow);
	width: 100%;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 15px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(67, 97, 238, 0.2);
	color: var(--primary);
	font-size: 1.2rem;
}

.contact-info {
	flex: 1;
}

.contact-type {
	font-weight: 600;
	margin-bottom: 5px;
}

.contact-detail {
	color: var(--gray);
	font-size: 0.9rem;
}

/* Bottom Navigation */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	display: flex;
	justify-content: space-around;
	padding: 15px;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
	border-radius: 20px 20px 0 0;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: var(--gray);
	font-size: 0.8rem;
}

.nav-item.active {
	color: var(--primary);
}

.nav-icon {
	font-size: 1.3rem;
	margin-bottom: 4px;
}

/* Responsive Design */

@media (min-width: 768px) {
	.container {
		max-width: 600px;
		margin: 0 auto;
	}
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container div.full-width-expandar {
	width: 100%;
  }
}

/* Full-width image sections */
.image-section {
	margin-bottom: 40px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--card-shadow);
	position: relative;
	width: 100%;
}

.image-container {
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
}

.image-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.image-section:hover .image-container img {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	color: white;
}

.image-content {
	max-width: 600px;
}

.image-title {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.image-description {
	font-size: 1.1rem;
	margin-bottom: 25px;
	opacity: 0.9;
}

.image-btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.image-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

/* Alternative layouts */
.content-left .image-content {
	margin-right: auto;
}

.content-center .image-content {
	margin: 0 auto;
	text-align: center;
}

.content-right .image-content {
	margin-left: auto;
}

.content-bottom .image-overlay {
	justify-content: flex-end;
}

.content-top .image-overlay {
	justify-content: flex-start;
}

/* Mini gallery */
.gallery-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 40px;
}

.gallery-item {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--card-shadow);
	height: 280px;
	position: relative;
}

.gallery-item .image-container {
	height: 100%;
}

.gallery-item .image-overlay {
	padding: 25px;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	justify-content: flex-end;
}

.gallery-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 10px;
}

/* Section selector */
.section-selector {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.selector-btn {
	background: white;
	border: none;
	padding: 12px 20px;
	border-radius: 50px;
	font-weight: 500;
	cursor: pointer;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
}

.selector-btn.active {
	background: var(--primary);
	color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
	.gallery-section {
		grid-template-columns: 1fr;
	}
	
	.image-title {
		font-size: 1.8rem;
	}
	
	.image-description {
		font-size: 1rem;
	}
	
	.image-overlay {
		padding: 25px;
	}
}

@media (max-width: 480px) {
	.app-logo {
		font-size: 1.5rem;
	}
	
	.image-title {
		font-size: 1.5rem;
	}
	
	.image-container {
		height: 300px;
	}
}

/* Registration Card */
.registration-card, .outlet-card {
	background: white;
	border-radius: 20px;
	padding: 25px;
	box-shadow: var(--card-shadow);
	margin-bottom: 30px;
}

#shop_area_container {
	margin-bottom: 15px;
}

.registration-header {
	text-align: center;
	margin-bottom: 25px;
}

.registration-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--dark);
}

.registration-subtitle {
	color: var(--gray);
	font-size: 0.95rem;
}

.registration-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.form-label {
	font-weight: 500;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
}

.required {
	color: var(--accent);
	margin-left: 4px;
}

.input-group {
	position: relative;
}

.form-input, .form-select {
	width: 100%;
	padding: 16px 16px 16px 50px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

/*.form-group > .input-group > .area-container > form-select {
	width: 100%;
	padding: 16px 16px 16px 50px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group > .input-group > .area-container > form-select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}*/

.area-container {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin-bottom: 10px;
}

.form-input:focus, .form-select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-input.error, .form-select.error {
	border-color: var(--error);
}

.input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray);
}

.error-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--error);
	display: none;
}

.form-input.error ~ .error-icon {
	display: block;
}

.error-message {
	color: var(--error);
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

.error-message.show {
	display: block;
}

.password-toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray);
	background: none;
	border: none;
	cursor: pointer;
}

.terms-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 10px;
}

.checkbox {
	margin-top: 4px;
	width: 20px;
	height: 20px;
	accent-color: var(--primary);
	flex-shrink: 0;
}

.checkbox.error {
	outline: 2px solid var(--error);
	outline-offset: -2px;
	border-radius: 4px;
}

.terms-label {
	font-size: 0.9rem;
	color: var(--gray);
	line-height: 1.5;
}

.terms-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
}

.terms-link:hover {
	text-decoration: underline;
}

.registration-button {
	background: #025D6F;
	color: white;
	border: none;
	padding: 16px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.registration-button:active {
	transform: scale(0.98);
	background: #003438;
}

.login-link {
	text-align: center;
	margin-top: 25px;
	color: var(--gray);
	font-size: 0.95rem;
}

.login-link a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
}

.login-link a:hover {
	text-decoration: underline;
}

/* Password Strength Meter */
.password-strength {
	height: 5px;
	border-radius: 3px;
	margin-top: 8px;
	background: #e0e0e0;
	overflow: hidden;
}

.strength-meter {
	height: 100%;
	width: 0;
	transition: all 0.3s ease;
}

.strength-weak {
	background: var(--error);
	width: 33%;
}

.strength-medium {
	background: #ff9e00;
	width: 66%;
}

.strength-strong {
	background: #06d6a0;
	width: 100%;
}

.strength-text {
	font-size: 0.8rem;
	margin-top: 5px;
	text-align: right;
}

/* Footer */
.app-footer {
	text-align: center;
	padding: 20px;
	color: var(--gray);
	font-size: 0.85rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
}

.footer-link {
	color: var(--primary);
	text-decoration: none;
}

/* Responsive Design */
@media (min-width: 768px) {
	.container {
		max-width: 500px;
		margin: 0 auto;
	}
}

/* Success Card */
.success-card {
	background: white;
	border-radius: 20px;
	padding: 40px 25px;
	box-shadow: var(--card-shadow);
	margin-bottom: 30px;
	text-align: center;
	max-width: 500px;
	width: 100%;
	animation: fadeIn 0.6s ease-out;
}

.success-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(76, 201, 240, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: var(--success);
	font-size: 2.5rem;
	animation: scaleIn 0.5s ease-out 0.3s both;
}

.success-content {
	margin-bottom: 30px;
}

.success-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--dark);
	animation: slideUp 0.5s ease-out 0.4s both;
}

.success-message {
	color: var(--gray);
	font-size: 1rem;
	margin-bottom: 10px;
	animation: slideUp 0.5s ease-out 0.5s both;
}

.account-details {
	background: var(--light);
	border-radius: 12px;
	padding: 20px;
	margin: 25px 0;
	text-align: left;
	animation: slideUp 0.5s ease-out 0.6s both;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
}

.detail-item:last-child {
	border-bottom: none;
}

.detail-label {
	font-weight: 500;
	color: var(--gray);
}

.detail-value {
	font-weight: 600;
	color: var(--dark);
}

.success-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
	animation: slideUp 0.5s ease-out 0.7s both;
}

.home-button {
	background: var(--primary);
	color: white;
	border: none;
	padding: 16px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.home-button:active {
	transform: scale(0.98);
	background: var(--primary-dark);
}

.secondary-button {
	background: white;
	color: var(--primary);
	border: 1px solid var(--primary);
	padding: 14px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.secondary-button:active {
	transform: scale(0.98);
	background: #f5f7ff;
}

/* Next Steps */
.next-steps {
	background: white;
	border-radius: 20px;
	padding: 25px;
	box-shadow: var(--card-shadow);
	max-width: 500px;
	width: 100%;
	animation: fadeIn 0.6s ease-out 0.8s both;
}

.steps-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--dark);
	text-align: center;
}

.steps-list {
	list-style: none;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid #f0f0f0;
	flex-direction: column;
}

.step-item:last-child {
	border-bottom: none;
}

.step-icon {
	width: 30px;
	height: 30px;
	/*border-radius: 50%;*/
	background: rgba(67, 97, 238, 0.1);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 3px;
}

.step-content {
	flex: 1;
}

.step-title {
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--dark);
}

.step-description {
	color: var(--gray);
	font-size: 0.9rem;
}

/* Footer */
.app-footer {
	text-align: center;
	padding: 20px;
	color: var(--gray);
	font-size: 0.85rem;
	margin-top: 20px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
}

.footer-link {
	color: var(--primary);
	text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		transform: scale(0);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (min-width: 768px) {
	.container {
		max-width: 500px;
		margin: 0 auto;
	}
	
	.success-actions {
		flex-direction: row;
	}
	
	.home-button, .secondary-button {
		flex: 1;
	}
}

@media (max-width: 480px) {
	.app-logo {
		font-size: 1.5rem;
	}
	
	.success-title {
		font-size: 1.5rem;
	}
	
	.account-details {
		padding: 15px;
	}
	
	.detail-item {
		flex-direction: column;
		gap: 5px;
	}
}

/* Customer Status */
.customer-status {
	background: white;
	border-radius: 16px;
	padding: 20px;
	margin: 20px 0;
	box-shadow: var(--card-shadow);
}

.customer-points {
	background: white;
	border-radius: 16px;
	padding-top: 0px;
	padding-bottom: 1px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 10px 0;
	box-shadow: var(--card-shadow);
}

.status-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.customer-id {
	display: flex;
	flex-direction: column;
}

.label {
	font-size: 0.8rem;
	color: var(--gray);
	margin-bottom: 5px;
}

.value {
	font-weight: 600;
	font-size: 1.1rem;
}

.copy-btn {
	background: #025D6F;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
}

.community-point-btn {
	background: #003438;
    border: none;
    width: auto;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 18px;
}

.loyalty-badge {
	background: linear-gradient(135deg, #725E41 0%, #725E41 100%);
	padding: 10px 15px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #FFFFFF;
}

.rank-badge {
	background: linear-gradient(135deg, #025D6F 0%, #725E41 100%);
	padding: 10px 15px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #FFFFFF;
}

/* Main Action Buttons */
.action-buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 25px 0;
}

.action-btn {
	background: white;
	border: none;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
}
.action-btn button {
	border: none;
	background-color: transparent;
}

.action-btn:active {
	transform: scale(0.97);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-icon {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	font-size: 1.5rem;
}

.balance .action-icon {
	background: rgba(76, 201, 240, 0.2);
	color: var(--success);
}

.transactions .action-icon {
	background: rgba(247, 37, 133, 0.2);
	color: var(--accent);
}

.edit-account .action-icon {
	background: rgba(114, 9, 183, 0.2);
	color: var(--secondary);
}

.password .action-icon {
	background: rgba(58, 12, 163, 0.2);
	color: var(--primary-dark);
}

.card-reg .action-icon {
	background: rgba(67, 97, 238, 0.2);
	color: var(--primary);
}

.community .action-icon {
	background: rgba(247, 37, 133, 0.2);
	color: var(--accent);
}

.action-name {
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
}

/* Secondary Buttons */
.secondary-buttons {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin: 20px 0;
}

.secondary-btn {
	background: white;
	border: none;
	border-radius: 16px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
}

.secondary-btn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.secondary-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.home .secondary-icon {
	background: rgba(67, 97, 238, 0.2);
	color: var(--primary);
}

.exit .secondary-icon {
	background: rgba(247, 37, 133, 0.2);
	color: var(--accent);
}

.secondary-text {
	font-weight: 600;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: var(--gray);
	font-size: 0.8rem;
}

.nav-item.active {
	color: #FFF;
	background-color: #F5A009;
	width: auto;
	height: 50px;
	border-radius: 10px;
	padding: 5px;
}

.nav-icon {
	font-size: 1.3rem;
	margin-bottom: 4px;
}

/* Responsive Design */
@media (min-width: 768px) {
	.container {
		max-width: 400px;
		margin: 40px;
	}
}

/* Right Navigation Menu - 60% width */
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

.nav-menu {
	position: fixed;
	top: 0;
	right: -60%;
	width: 60%;
	height: 90vh;
	background: white;
	z-index: 1001;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.nav-menu.active {
	right: 0;
}

.menu-header {
	background: linear-gradient(135deg, #F5A009, #725E4A);
	color: white;
	padding: 25px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu-title {
	font-size: 1.4rem;
	font-weight: 600;
}

.close-menu {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.menu-profile {
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid #f0f0f0;
}

.profile-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
}

.profile-info {
	flex: 1;
}

.profile-name {
	font-weight: 600;
	margin-bottom: 5px;
}

.profile-email {
	color: var(--gray);
	font-size: 0.9rem;
}

.top-nav-items {
	padding: 20px 0;
	flex: 1;
}

.menu-toggle {
	background: #F5A009;
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	box-shadow: var(--button-shadow);
}

.top-nav-item {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.top-nav-item:hover, .top-nav-item.active {
	background: rgba(67, 97, 238, 0.1);
	color: var(--primary);
	border-left-color: var(--primary);
}

.top-nav-icon {
	width: 24px;
	margin-right: 15px;
	text-align: center;
}

.top-nav-label {
	flex: 1;
	font-weight: 500;
}

.nav-badge {
	background: var(--accent);
	color: white;
	font-size: 0.7rem;
	padding: 3px 8px;
	border-radius: 12px;
}

.menu-footer {
	border-top: 1px solid #f0f0f0;
}

.footer-action {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		width: 80%;
		right: -80%;
	}
	
	.nav-menu.active {
		right: 0;
	}
}

@media (max-width: 480px) {
	.nav-menu {
		width: 80%;
		right: -100%;
	}
	
	.nav-menu.active {
		right: 0;
	}
	
	.menu-header {
		padding: 5px 15px;
	}
	
	.menu-title {
		font-size: 1.2rem;
	}
	
	.top-nav-item {
		padding: 14px 15px;
	}
}
/* Search and Filter Section */
.search-section {
	background: white;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--card-shadow);
}

.search-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.section-title {
	font-size: 1.2rem;
	font-weight: 600;
}

.search-box {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.search-input {
	flex: 1;
	padding: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	font-size: 1rem;
}

.search-button {
	background: var(--primary);
	color: white;
	border: none;
	width: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.filter-options {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 5px;
}

.filter-option {
	background: var(--light);
	border: none;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	white-space: nowrap;
}

.filter-option.active {
	background: var(--primary);
	color: white;
}

/* Data Table */
.data-table-container {
	background: white;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--card-shadow);
}

.table-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
}

.table-actions {
	display: flex;
	gap: 10px;
}

.action-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light);
	color: var(--primary);
}

.data-table {
	width: 100%;
	border-collapse: separate;
	overflow: auto;
	max-height: 500px;
	display: block;
	white-space: nowrap;
	border-spacing: 20px 0px;
	margin-bottom: 15px;
	padding-bottom: 20px;
}

.data-table th {
	text-align: left;
	border-bottom: 2px solid var(--light);
	color: var(--gray);
	font-weight: 600;
}

.data-table td {
	border-bottom: 1px solid var(--light);
}

.data-table tr:last-child td {
	border-bottom: none;
}

.customer-cell {
	display: flex;
	align-items: center;
	gap: 12px;
}

.customer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
}

.customer-info {
	display: flex;
	flex-direction: column;
}

.customer-name {
	font-weight: 600;
	margin-bottom: 4px;
}

.customer-detail {
	font-size: 0.8rem;
	color: var(--gray);
}

.status-badge {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	display: inline-block;
}

.status-active {
	background: rgba(76, 201, 240, 0.2);
	color: var(--success);
}

.status-pending {
	background: rgba(247, 37, 133, 0.2);
	color: var(--accent);
}

.status-premium {
	background: rgba(114, 9, 183, 0.2);
	color: var(--secondary);
}

.action-cell {
	display: flex;
	gap: 8px;
}

.table-btn {
	width: auto;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #F5A009;
	color: #FFF;
	padding: 0px 10px;
	margin: 5px;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	border-radius: 16px;
	padding: 15px 20px;
	box-shadow: var(--card-shadow);
}

.page-info {
	color: var(--gray);
	font-size: 0.9rem;
}

.page-controls {
	display: flex;
	gap: 8px;
}

.page-btn {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--light);
	background: white;
}

.page-btn.active {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

/* Dropdown Styles */
.dropdowns-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-bottom: 30px;
}

.dropdown-card {
	background: white;
	border-radius: 16px;
	padding: 25px;
	box-shadow: var(--card-shadow);
}

.card-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px !important;
	color: var(--dark);
	display: flex;
	align-items: center;
	gap: 10px;
}

.card-title i {
	color: var(--primary);
}
.dropdown {
	position: relative;
	margin-bottom: 20px;
}

.dropdown-toggle {
	width: 100%;
	padding: 14px 20px;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.dropdown-toggle:hover {
	border-color: var(--primary);
}

.dropdown-toggle:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: white;
	border-radius: 12px;
	box-shadow: var(--card-shadow);
	margin-top: 5px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
	max-height: 300px;
	overflow-y: auto;
}

.dropdown-menu.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	padding: 12px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dropdown-item:hover {
	background-color: #025D6F !important;
	color: #FFFFFF !important;
}

.dropdown-item i {
	color: #025D6F;
	width: 20px;
}
.dropdown-item i:hover {
	color: #FFFFFF;
}

.dropdown-divider {
	height: 1px;
	background: #f0f0f0;
	margin: 5px 0;
}

/* Color Variants */
.dropdown-primary .dropdown-toggle {
	background: #025D6F;
	color: white;
	border: none;
}

.dropdown-secondary .dropdown-toggle {
	background: var(--secondary);
	color: white;
	border: none;
}

.dropdown-accent .dropdown-toggle {
	background: var(--accent);
	color: white;
	border: none;
}

/* Selection Display */
.selection-display {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 12px;
	margin-top: 20px;
	font-size: 0.9rem;
}

.selection-value {
	font-weight: 600;
	color: var(--primary);
	margin-top: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
	.dropdowns-container {
		grid-template-columns: 1fr;
	}
}

/* Modal Styles */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: all;
}

.modal {
	background: white;
	border-radius: 16px;
	width: 100%;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	/*transform: translateY(20px);*/
	transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
	position: fixed;
	top: 80px; /* Places it 20px from the top */
	left: 50%; /* Keeps it centered horizontally */
	transform: translateX(-50%); /* Only translate horizontally to complete the centering */
}

.modal-header {
	padding: 0px 10px;
	border-bottom: 1px solid var(--light);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-title {
	font-size: 1.2rem;
	font-weight: 600;
}

.modal-close {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #F42A41;
	color: #FFF;
	margin-top: 5px;
}

.modal-body {
	padding: 0px 10px;
	overflow-y: auto;
	max-height: calc(80vh - 140px);
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.modal-footer {
	padding: 20px;
	border-top: 1px solid var(--light);
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

/* Password Card */
.password-toggle {
	position: absolute;
	right: 45px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray);
	background: none;
	border: none;
	cursor: pointer;
}
.password-card {
	background: white;
	border-radius: 20px;
	padding: 25px;
	box-shadow: var(--card-shadow);
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.password-header {
	text-align: center;
	margin-bottom: 25px;
}

.password-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--dark);
}

.password-subtitle {
	color: var(--gray);
	font-size: 0.95rem;
}

.password-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Requirements List */
.requirements {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 15px;
	margin-top: 10px;
}

.requirements-title {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.requirement-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.85rem;
	color: var(--gray);
}

.requirement-item.valid {
	color: #06d6a0;
}

.requirement-icon {
	font-size: 0.7rem;
}

/* Form Actions */
.form-actions {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}
.submit-button {
	background: var(--primary);
	color: white;
	border: none;
	padding: 16px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.submit-button:active {
	transform: scale(0.98);
	background: var(--primary-dark);
}

.cancel-button {
	background: white;
	color: var(--gray);
	border: 1px solid #e0e0e0;
	padding: 16px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.cancel-button:active {
	transform: scale(0.98);
	background: #f8f9fa;
}

/* Success Message */
.success-message {
	background: rgba(6, 214, 160, 0.1);
	border: 1px solid rgba(6, 214, 160, 0.2);
	color: #06d6a0;
	padding: 15px;
	border-radius: 12px;
	margin-top: 20px;
	display: none;
	align-items: center;
	gap: 10px;
}

.success-message.show {
	display: flex;
}

/* Login Card */
.login-card {
	background: white;
	border-radius: 20px;
	padding: 25px;
	box-shadow: var(--card-shadow);
	margin-bottom: 30px;
}

.login-header {
	text-align: center;
	margin-bottom: 25px;
}

.login-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--dark);
}

.login-subtitle {
	color: var(--gray);
	font-size: 0.95rem;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.forgot-link {
	color: var(--primary);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	margin-left: auto;
}

.password-toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray);
	background: none;
	border: none;
	cursor: pointer;
}

.remember-forgot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5px;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
}

.checkbox {
	width: 18px;
	height: 18px;
	accent-color: var(--primary);
}

.checkbox-label {
	font-size: 0.9rem;
	color: var(--gray);
}

.login-button {
	background: #025D6F;
	color: white;
	border: none;
	padding: 16px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.login-button:active {
	transform: scale(0.98);
	background: #003438;
}

/* Divider */
.divider {
	display: flex;
	align-items: center;
	margin: 25px 0;
	color: var(--gray);
	font-size: 0.9rem;
}

.divider::before,
.divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e0e0e0;
}

.divider-text {
	padding: 0 15px;
}

/* Social Login */
.social-login {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.social-button {
	padding: 14px;
	border-radius: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid #e0e0e0;
	background: white;
	cursor: pointer;
	transition: all 0.3s ease;
}

.social-button:active {
	transform: scale(0.98);
	background: #f9f9f9;
}

.google-button {
	color: #757575;
}

.facebook-button {
	color: #1877F2;
}

/* Signup Section */
.signup-section {
	text-align: center;
	margin-top: 30px;
}

.signup-text {
	color: var(--gray);
	margin-bottom: 15px;
}

.signup-button {
	background: white;
	color: var(--primary);
	border: 1px solid var(--primary);
	padding: 14px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.signup-button:active {
	transform: scale(0.98);
	background: #f5f7ff;
}

/* Profile Form */
.profile-card {
	background: white;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--card-shadow);
}

.profile-header {
	text-align: center;
	margin-bottom: 20px;
}

.profile-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--dark);
}

.profile-subtitle {
	color: var(--gray);
	font-size: 0.9rem;
}

/* Section Styling */
.form-section {
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}

.section-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: var(--primary);
}

.section-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: rgba(67, 97, 238, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	color: var(--primary);
}

.section-title {
	font-weight: 600;
	font-size: 1.1rem;
}

/* Photo Upload */
.photo-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 25px;
}

.photo-upload {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 2px dashed #e0e0e0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-bottom: 15px;
	overflow: hidden;
	position: relative;
}

.photo-upload img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

.upload-icon {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 8px;
}

.upload-text {
	text-align: center;
	color: var(--gray);
	font-size: 0.8rem;
	padding: 0 10px;
}

#file-input {
	display: none;
}

.upload-button {
	background: var(--primary);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
}

.hidden-id {
	background: #f8f9fa;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 0.9rem;
	color: var(--gray);
}

.hidden-id span {
	font-weight: 600;
	color: var(--primary);
}

/* Same Address Toggle */
.same-address {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	padding: 10px;
	background: #f8f9fa;
	border-radius: 8px;
}

.checkbox {
	width: 20px;
	height: 20px;
	accent-color: var(--primary);
}

/* Tree View */
/*.tree-container {
	background: white;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--card-shadow);
	overflow: auto;
}

.tree-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.tree-actions {
	display: flex;
	gap: 10px;
}

.tree-action-btn {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light);
	color: var(--primary);
	border: none;
}

.tree {
	padding-left: 0;
	position: relative;
}

.tree-node {
	list-style: none;
	margin: 12px 0;
	position: relative;
}

.node-content {
	display: flex;
	align-items: center;
	padding-left: 10px;
	background: #32494C;
	color: #FFFFFF;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.node-content:hover {
	background: #e6eeff;
	color: #000;
}

.node-toggle {
	margin-right: 12px;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #725E41;
  	color: #FFF;
	font-size: 0.9rem;
}

.node-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-weight: 600;
	color: white;
}

.node-customer .node-icon {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.node-branch .node-icon {
	background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.node-info {
	flex: 1;
}

.node-name {
	font-weight: 600;
	margin-bottom: 4px;
}

.node-details {
	font-size: 1rem;
	color: #FFF;
}

.node-actions {
	display: flex;
	gap: 8px;
}

.node-btn {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: white;
	color: var(--primary);
}

.node-children {
	padding-left: 40px;
	position: relative;
}

.node-children::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	width: 2px;
	height: 100%;
	background: #e0e0e0;
}

.tree-node::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -20px;
	width: 20px;
	height: 2px;
	background: #e0e0e0;
}

.tree-node:first-child::after {
	content: "";
	position: absolute;
	top: 0;
	left: -20px;
	width: 2px;
	height: 50%;
	background: #e0e0e0;
}

.tree-node:last-child::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -20px;
	width: 2px;
	height: 50%;
	background: #e0e0e0;
}*/

.node-badge {
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 500;
	margin-left: 10px;
}

.badge-primary {
	background: rgba(67, 97, 238, 0.2);
	color: var(--primary);
}

.badge-success {
	background: rgba(76, 201, 240, 0.2);
	color: var(--success);
}

.badge-accent {
	background: rgba(247, 37, 133, 0.2);
	color: var(--accent);
}

/* Header Styles */
.header {
	background: linear-gradient(135deg, #003438, #003438);
	color: white;
	padding: 20px;
	border-radius: var(--border-radius);
	margin-bottom: 20px;
	box-shadow: var(--box-shadow);
	position: relative;

	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 15px;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome {
	font-size: 1.2rem;
	margin-bottom: 5px;
	font-weight: 500;
}

.shop-name {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.shopper-id {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
	width: fit-content;
}

.shopper-id i {
	margin-right: 8px;
}

/* Balance Section */
.balance-section {
	background: white;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--box-shadow);
	text-align: center;
}

.balance-label {
	font-size: 1rem;
	color: var(--gray);
	margin-bottom: 10px;
}

.balance-amount {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.balance-hidden {
	filter: blur(6px);
}

.toggle-balance {
	background: var(--primary);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	margin: 0 auto;
	transition: background 0.3s;
}

.toggle-balance:hover {
	background: var(--secondary);
}

.toggle-balance i {
	margin-right: 8px;
}
/* Check Balance Button */
.check-balance-container {
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px 0;
}

.check-balance-btn {
	background: #725E41;
	color: white;
	border: none;
	padding: 14px 28px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	box-shadow: 0 4px 8px rgba(76, 201, 240, 0.3);
}

.check-balance-btn:hover {
	background: #32494C;
	transform: translateY(-2px);
}

.check-balance-btn i {
	margin-right: 8px;
}

.check-balance-btn .spinner {
	position: absolute;
	left: 20px;
	opacity: 0;
	transition: opacity 0.3s;
}

.check-balance-btn.loading {
	padding-left: 45px;
}

.check-balance-btn.loading .spinner {
	opacity: 1;
	animation: spin 1s linear infinite;
}

.check-balance-btn.loading .btn-text {
	opacity: 0.7;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.balance-text {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--success);
	display: none;
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.balance-text {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--success);
	display: none;
	animation: fadeIn 0.5s;
}

/* Transaction Income */
.transaction-income {
	background: white;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--box-shadow);
}

.section-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.view-all {
	font-size: 0.9rem;
	color: var(--primary);
	font-weight: 500;
}

.income-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.stat-card {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 15px;
	text-align: center;
}

.stat-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--gray);
}

/* Shop Details */
.shop-details {
	background: white;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--box-shadow);
}

.detail-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.detail-item:last-child {
	border-bottom: none;
}

.detail-label {
	color: var(--gray);
}

.detail-value {
	font-weight: 500;
}

/* Account Actions */
.account-actions {
	background: white;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--box-shadow);
}

.action-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 10px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	background-color: #725E41;
	border-radius: 10px;
	margin-bottom: 10px;
	color: #FFF;
}

.action-item:last-child {
	border-bottom: none;
}

.action-item:hover {
	background: #32494C;
}

.action-content {
	display: flex;
	align-items: center;
}

.action-content i {
	margin-right: 12px;
	color: #FFF;
	font-size: 1.2rem;
	width: 24px;
}

.action-text {
	font-weight: 500;
}

.action-arrow {
	color: #FFF;
}

/* Modal Styles */
.card {
	background: white;
	border-radius: var(--border-radius);
	padding: 25px;
	box-shadow: var(--box-shadow);
	margin-bottom: 20px;
}

.header {
	text-align: center;
	margin-bottom: 25px;
}

.header h1 {
	font-size: 1.8rem;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.header p {
	color: #FFFFFF;
}

.form-group-trans {
	margin-bottom: 20px;
}

.form-group-trans label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--dark);
}

.input-with-icon {
	position: relative;
}

.input-with-icon i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray);
}

.input-with-icon input {
	width: 100%;
	padding: 15px 15px 15px 45px;
	border: 2px solid #e9ecef;
	border-radius: var(--border-radius);
	font-size: 1rem;
	transition: border-color 0.3s;
}

.input-with-icon input:focus {
	border-color: var(--primary);
	outline: none;
}

.btn-trans {
	display: block;
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-primary-trans {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.btn-primary-trans:hover {
	background: var(--secondary);
	transform: translateY(-2px);
}

.btn-success {
	background: var(--success);
	color: white;
	box-shadow: 0 4px 10px rgba(76, 201, 240, 0.3);
}

.btn-success:hover {
	background: #3bb5d9;
}

.btn-outline {
	background: transparent;
	color: var(--gray);
	border: 2px solid var(--gray);
}

.btn-outline:hover {
	background: #f8f9fa;
}

/* Alert Message */
.alert {
	padding: 15px;
	border-radius: var(--border-radius);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	animation: slideIn 0.5s ease;
	transform: translateY(-10px);
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s ease;
}

.alert.show {
	transform: translateY(0);
	opacity: 1;
	max-height: 100px;
}

.alert-danger {
	background-color: #ffebee;
	color: var(--danger);
	border: 1px solid #ffcdd2;
}

.alert-icon {
	margin-right: 12px;
	font-size: 1.2rem;
}

.alert-message {
	flex: 1;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	padding: 16px;
	overflow: auto;
}

.modal-center-helper {
	display: table;
	height: 100%;
	width: 100%;
	pointer-events: none;
}

.modal-center {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	pointer-events: none;
}

.modal-content {
	background: white;
	border-radius: var(--border-radius);
	padding: 5px;
	box-shadow: var(--box-shadow);
	width: 100%;
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	text-align: left;
	pointer-events: auto;
	margin: 0 auto;
}

.modal.show {
	display: table;
	/*position: absolute;*/
	top: 0%;
	left: 50%;
	transform: translate(-50%, 0%);
}

.modal.show .modal-content {
	transform: scale(1);
	opacity: 1;
}

.modal-header-trans {
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e9ecef;
}

.modal-header-trans h2 {
	color: var(--primary);
	font-size: 1.5rem;
}

.confirmation-details {
	background: #f8f9fa;
	border-radius: var(--border-radius);
	padding: 20px;
	margin: 20px 0;
}

.confirmation-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #e9ecef;
}

.confirmation-item:last-child {
	border-bottom: none;
}

.confirmation-label {
	color: var(--gray);
	font-weight: 500;
}

.confirmation-value {
	font-weight: 600;
}

.modal-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-top: 20px;
}

.loading {
	display: none;
	text-align: center;
	margin: 20px 0;
}

.loading i {
	font-size: 2rem;
	color: var(--primary);
	animation: spin 1s linear infinite;
}

.success-message {
	display: none;
	text-align: center;
	padding: 20px;
	background: #f0f9ff;
	border-radius: var(--border-radius);
	margin-top: 20px;
}

.success-message i {
	font-size: 1.5rem;
	color: var(--success);
	margin-bottom: 15px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
	20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
	animation: shake 0.5s;
}

/* Custom Modal Styles */
.modal-content {
	border-radius: 16px;
	overflow: hidden;
	border: none;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
	background: #2c3e50;
	color: white;
	padding: 15px 20px;
	border-bottom: none;
}

.modal-title {
	font-size: 22px;
	font-weight: 600;
}

.btn-close {
	filter: invert(1);
	opacity: 0.8;
	transition: all 0.3s ease;
}

.btn-close:hover {
	opacity: 1;
	transform: rotate(90deg);
}

.modal-body {
	padding: 5px !important;
	text-align: center;
}

.modal-icon {
	font-size: 48px;
	color: #3498db;
	margin-bottom: 20px;
}

.modal-message {
	font-size: 18px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.amount {
	font-weight: 700;
	color: #e74c3c;
	font-size: 24px;
}

.modal-footer {
	padding: 20px;
	display: flex;
	justify-content: center;
	gap: 15px;
	background: #f8f9fa;
	border-top: none;
}

.btn-modal {
	padding: 10px 25px;
	border-radius: 50px;
	font-weight: 600;
	min-width: 100px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-modal:hover {
	transform: translateY(-3px);
	box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

.btn-no {
	background: #e74c3c;
	border-color: #e74c3c;
	color: white;
}

.btn-no:hover {
	background: #c0392b;
	border-color: #c0392b;
	color: white;
}

.btn-yes {
	background: #2ecc71;
	border-color: #2ecc71;
	color: white;
}

.btn-yes:hover {
	background: #27ae60;
	border-color: #27ae60;
	color: white;
}

@media (max-width: 576px) {
	.modal-footer {
		flex-direction: column;
	}
	
	.btn-modal {
		width: 100%;
	}
}

/* Add to your CSS */
.icon-create-user {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #025D6F;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M259.993 460.958c14.498 14.498 75.487-23.002 89.985-37.492l59.598-59.606-52.494-52.485-59.597 59.597C282.996 385.462 245.504 446.46 259.993 460.958zM493.251 227.7c-14.498-14.49-37.996-14.49-52.485 0l-71.68 71.678 52.494 52.486 71.671-71.68C507.741 265.695 507.741 242.198 493.251 227.7zM399.586 308.882l-9.008-8.999 50.18-50.18 8.991 8.99-50.163 50.189zM374.714 448.193c-14.071 14.055-67.572 51.008-104.791 51.008-0.008 0 0 0-0.008 0-17.47 0-28.484-7.351-34.648-13.516-44.758-44.775 36.604-138.56 37.492-139.439l4.123-4.124c-3.944-4.354-5.644-10.348-5.644-22.302 0-8.836 0-25.256 0-40.403 11.364-12.619 15.497-11.048 25.103-60.596 19.433 0 18.178-25.248 27.34-47.644 7.479-18.238 1.212-25.632-5.072-28.655 5.14-66.463 5.14-112.236-70.296-126.435-27.349-23.438-68.606-15.48-88.158-11.57-19.536 3.911-37.159 0-37.159 0l3.355 31.49C97.74 70.339 112.05 116.112 107.44 142.923c-5.994 3.27-11.407 10.809-4.269 28.254 9.17 22.396 7.906 47.644 27.339 47.644 9.614 49.548 13.747 47.976 25.111 60.596 0 15.148 0 31.567 0 40.403 0 25.248-8.58 25.684-28.134 36.612-47.14 26.35-108.572 41.659-119.571 124.01C5.902 495.504 92.378 511.948 213.434 512c121.04-0.052 207.524-16.496 205.518-31.558-3.168-23.702-10.648-41.547-20.68-55.806L374.714 448.193z"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M259.993 460.958c14.498 14.498 75.487-23.002 89.985-37.492l59.598-59.606-52.494-52.485-59.597 59.597C282.996 385.462 245.504 446.46 259.993 460.958zM493.251 227.7c-14.498-14.49-37.996-14.49-52.485 0l-71.68 71.678 52.494 52.486 71.671-71.68C507.741 265.695 507.741 242.198 493.251 227.7zM399.586 308.882l-9.008-8.999 50.18-50.18 8.991 8.99-50.163 50.189zM374.714 448.193c-14.071 14.055-67.572 51.008-104.791 51.008-0.008 0 0 0-0.008 0-17.47 0-28.484-7.351-34.648-13.516-44.758-44.775 36.604-138.56 37.492-139.439l4.123-4.124c-3.944-4.354-5.644-10.348-5.644-22.302 0-8.836 0-25.256 0-40.403 11.364-12.619 15.497-11.048 25.103-60.596 19.433 0 18.178-25.248 27.34-47.644 7.479-18.238 1.212-25.632-5.072-28.655 5.14-66.463 5.14-112.236-70.296-126.435-27.349-23.438-68.606-15.48-88.158-11.57-19.536 3.911-37.159 0-37.159 0l3.355 31.49C97.74 70.339 112.05 116.112 107.44 142.923c-5.994 3.27-11.407 10.809-4.269 28.254 9.17 22.396 7.906 47.644 27.339 47.644 9.614 49.548 13.747 47.976 25.111 60.596 0 15.148 0 31.567 0 40.403 0 25.248-8.58 25.684-28.134 36.612-47.14 26.35-108.572 41.659-119.571 124.01C5.902 495.504 92.378 511.948 213.434 512c121.04-0.052 207.524-16.496 205.518-31.558-3.168-23.702-10.648-41.547-20.68-55.806L374.714 448.193z"/></svg>') no-repeat center / contain;
}

/* Size variants like Font Awesome */
.icon-create-user-lg { width: 1.33em; height: 1.33em; }
.icon-create-user-2x { width: 2em; height: 2em; }
.icon-create-user-3x { width: 3em; height: 3em; }

/* ===== CREATE SELLER ICON ===== */
.icon-create-seller {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-351 153 256 256"><path d="M-276.9 265.2h19v14.9h-19V265.2z M-214 253.6h79.5v9.6H-214V253.6z M-214 295.8h79.5v9.6H-214V295.8z M-164.6 251.4c6.1 0 11.1-5.1 11.1-11.3s-5-11.3-11.1-11.3-11.1 5.1-11.1 11.3-5 11.3 11.1 11.3z M-184.4 250.6c3.8 0 6.8-3.1 6.8-6.9 0-3.9-3-6.9-6.8-6.9-3.8 0-6.8 3.1-6.8 6.9 0 3.8 3 6.9 6.8 6.9z M-198.3 251.3c2.5 0 4.4-2 4.4-4.5 0-2.5-1.9-4.5-4.4-4.5s-4.4 2-4.4 4.5c0 2.5 1.9 4.5 4.4 4.5z M-181.4 277.5h28v14.7h-28V277.5z M-198.2 277.5h8.7v14.7h-8.7V277.5z M-267.1 227.5c9.5 0 17.1 7.7 17.1 17.1s-7.7 17.1-17.1 17.1-17.1-7.7-17.1-17.1 7.6-17.1 17.1-17.1z M-293 291c0-1.3 1.1-2 2-2 1.3 0 2 0.9 2 2v24.7h8.5v-35.6v-14.9h-6.7c-12 0-19.5 9.8-19.5 22.2v28.3h13.4V291H-293z M-221.8 154.4L-341 179.8v13.5l8.7-0.1v0.1l0 0v213.5h216v-85.7V193.3h8.7v-13.9L-221.8 154.4z M-130.7 321.1h-186.9V193.3h186.9V321.1z M-254.5 280.1v35.6h8.7V291c0-1.3 1.1-2 2-2 1.3 0 2 1.1 2 2v24.7h13.4v-28c0.2-12.5-7.3-22.4-19.5-22.4h-6.8v14.9H-254.5z"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-351 153 256 256"><path d="M-276.9 265.2h19v14.9h-19V265.2z M-214 253.6h79.5v9.6H-214V253.6z M-214 295.8h79.5v9.6H-214V295.8z M-164.6 251.4c6.1 0 11.1-5.1 11.1-11.3s-5-11.3-11.1-11.3-11.1 5.1-11.1 11.3-5 11.3 11.1 11.3z M-184.4 250.6c3.8 0 6.8-3.1 6.8-6.9 0-3.9-3-6.9-6.8-6.9-3.8 0-6.8 3.1-6.8 6.9 0 3.8 3 6.9 6.8 6.9z M-198.3 251.3c2.5 0 4.4-2 4.4-4.5 0-2.5-1.9-4.5-4.4-4.5s-4.4 2-4.4 4.5c0 2.5 1.9 4.5 4.4 4.5z M-181.4 277.5h28v14.7h-28V277.5z M-198.2 277.5h8.7v14.7h-8.7V277.5z M-267.1 227.5c9.5 0 17.1 7.7 17.1 17.1s-7.7 17.1-17.1 17.1-17.1-7.7-17.1-17.1 7.6-17.1 17.1-17.1z M-293 291c0-1.3 1.1-2 2-2 1.3 0 2 0.9 2 2v24.7h8.5v-35.6v-14.9h-6.7c-12 0-19.5 9.8-19.5 22.2v28.3h13.4V291H-293z M-221.8 154.4L-341 179.8v13.5l8.7-0.1v0.1l0 0v213.5h216v-85.7V193.3h8.7v-13.9L-221.8 154.4z M-130.7 321.1h-186.9V193.3h186.9V321.1z M-254.5 280.1v35.6h8.7V291c0-1.3 1.1-2 2-2 1.3 0 2 1.1 2 2v24.7h13.4v-28c0.2-12.5-7.3-22.4-19.5-22.4h-6.8v14.9H-254.5z"/></svg>') no-repeat center / contain;
  vertical-align: -0.125em;
}

/* ===== SIZE VARIANTS ===== */
.icon-create-seller-xs { width: 0.75em; height: 0.75em; }
.icon-create-seller-sm { width: 0.875em; height: 0.875em; }
.icon-create-seller-lg { width: 1.33em; height: 1.33em; }
.icon-create-seller-2x { width: 2em; height: 2em; }
.icon-create-seller-3x { width: 3em; height: 3em; }

/* ===== ANIMATIONS ===== */
.icon-create-seller-spin {
  animation: icon-create-seller-spin 2s infinite linear;
}

@keyframes icon-create-seller-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.icon-create-seller-pulse {
  animation: icon-create-seller-spin 1s infinite steps(8);
}

/* ===== TRANSFORMS ===== */
.icon-create-seller-rotate-90 { transform: rotate(90deg); }
.icon-create-seller-rotate-180 { transform: rotate(180deg); }
.icon-create-seller-rotate-270 { transform: rotate(270deg); }
.icon-create-seller-flip-horizontal { transform: scaleX(-1); }
.icon-create-seller-flip-vertical { transform: scaleY(-1); }

/* ===== STYLING ===== */
.icon-create-seller-border {
  padding: 0.25em;
  border: 0.08em solid currentColor;
  border-radius: 0.25em;
}

.icon-create-seller-fw {
  width: 1.28571429em;
  text-align: center;
}

/* ===== SIGN IN DOUBLE ARROW ICON ===== */
.icon-sign-in-double {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 15L7 12L10 9M15 15L12 12L15 9M12 12L21 12M14 19v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v1" style="fill: none; stroke: rgb(0,0,0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 15L7 12L10 9M15 15L12 12L15 9M12 12L21 12M14 19v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v1" style="fill: none; stroke: rgb(0,0,0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"/></svg>') no-repeat center / contain;
  vertical-align: -0.125em;
}

/* ===== SIZE VARIANTS ===== */
.icon-sign-in-double-xs { width: 0.75em; height: 0.75em; }
.icon-sign-in-double-sm { width: 0.875em; height: 0.875em; }
.icon-sign-in-double-lg { width: 1.33em; height: 1.33em; }
.icon-sign-in-double-2x { width: 2em; height: 2em; }
.icon-sign-in-double-3x { width: 3em; height: 3em; }

/* ===== ANIMATIONS ===== */
.icon-sign-in-double-spin {
  animation: icon-sign-in-double-spin 2s infinite linear;
}

.icon-sign-in-double-pulse {
  animation: icon-sign-in-double-spin 1s infinite steps(8);
}

@keyframes icon-sign-in-double-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== SPECIAL ANIMATION FOR THIS ICON - SLIDE RIGHT ===== */
.icon-sign-in-double-slide {
  animation: icon-sign-in-double-slide 1.5s infinite;
}

@keyframes icon-sign-in-double-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(0.2em); }
}

/* ===== TRANSFORMS ===== */
.icon-sign-in-double-rotate-90 { transform: rotate(90deg); }
.icon-sign-in-double-rotate-180 { transform: rotate(180deg); }
.icon-sign-in-double-rotate-270 { transform: rotate(270deg); }
.icon-sign-in-double-flip-horizontal { transform: scaleX(-1); }
.icon-sign-in-double-flip-vertical { transform: scaleY(-1); }

/* ===== STYLING ===== */
.icon-sign-in-double-border {
  padding: 0.25em;
  border: 0.08em solid currentColor;
  border-radius: 0.25em;
}

.icon-sign-in-double-fw {
  width: 1.28571429em;
  text-align: center;
}

/* ===== COLOR VARIANTS ===== */
.icon-sign-in-double-success { color: #28a745 !important; }
.icon-sign-in-double-primary { color: #007bff !important; }
.icon-sign-in-double-warning { color: #ffc107 !important; }
.icon-sign-in-double-danger { color: #dc3545 !important; }
.icon-sign-in-double-info { color: #17a2b8 !important; }

/* ===== SIGN OUT DOUBLE ARROW ICON ===== */
.icon-sign-out-double {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9L21 12 18 15M13 9L16 12 13 15M16 12L7 12M14 19v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v1" style="fill: none; stroke: rgb(0,0,0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9L21 12 18 15M13 9L16 12 13 15M16 12L7 12M14 19v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v1" style="fill: none; stroke: rgb(0,0,0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"/></svg>') no-repeat center / contain;
  vertical-align: -0.125em;
}

/* ===== SIZE VARIANTS ===== */
.icon-sign-out-double-xs { width: 0.75em; height: 0.75em; }
.icon-sign-out-double-sm { width: 0.875em; height: 0.875em; }
.icon-sign-out-double-lg { width: 1.33em; height: 1.33em; }
.icon-sign-out-double-2x { width: 2em; height: 2em; }
.icon-sign-out-double-3x { width: 3em; height: 3em; }

/* ===== ANIMATIONS ===== */
.icon-sign-out-double-spin {
  animation: icon-sign-out-double-spin 2s infinite linear;
}

.icon-sign-out-double-pulse {
  animation: icon-sign-out-double-spin 1s infinite steps(8);
}

@keyframes icon-sign-out-double-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== SPECIAL ANIMATION FOR THIS ICON - SLIDE LEFT ===== */
.icon-sign-out-double-slide {
  animation: icon-sign-out-double-slide 1.5s infinite;
}

@keyframes icon-sign-out-double-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-0.2em); }
}

/* ===== TRANSFORMS ===== */
.icon-sign-out-double-rotate-90 { transform: rotate(90deg); }
.icon-sign-out-double-rotate-180 { transform: rotate(180deg); }
.icon-sign-out-double-rotate-270 { transform: rotate(270deg); }
.icon-sign-out-double-flip-horizontal { transform: scaleX(-1); }
.icon-sign-out-double-flip-vertical { transform: scaleY(-1); }

/* ===== STYLING ===== */
.icon-sign-out-double-border {
  padding: 0.25em;
  border: 0.08em solid currentColor;
  border-radius: 0.25em;
}

.icon-sign-out-double-fw {
  width: 1.28571429em;
  text-align: center;
}

/* ===== COLOR VARIANTS ===== */
.icon-sign-out-double-warning { color: #ffc107 !important; }
.icon-sign-out-double-danger { color: #dc3545 !important; }
.icon-sign-out-double-secondary { color: #6c757d !important; }
.icon-sign-out-double-dark { color: #343a40 !important; }
.icon-sign-out-double-muted { color: #6c757d !important; }

.generation-header {
	/*box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);*/
}

.tree-wrap {
    overflow: auto;
    flex: 1;
}

.node {
    background: #32494C;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: background 0.2s;
	color: #FFF;
}

.node:hover {
    background: #C4C4C4
}

.node.active {
    border: 1px solid var(--accent);
    background: #025D6F;
}

.node.flash {
    animation: flashHighlight 1s ease
}

@keyframes flashHighlight {
    0% {
        box-shadow: 0 0 0px var(--accent);
    }
    50% {
        box-shadow: 0 0 12px var(--accent);
    }
    100% {
        box-shadow: 0 0 0px var(--accent);
    }
}

.node .label {
    font-size: 0.95rem;
    font-weight: 600;
	color: #FFF;
}

.node .meta {
    font-size: 0.8rem;
    color: var(--muted)
}

.back-btn {
    background: #025D6F;
	color: #FFF;
	border: 1px solid #002345;
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 8px;
	padding: 5px;
	border-radius: 10px;
	padding-right: 10px;
}

.back-btn:hover {
    text-decoration: underline
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px
}

.breadcrumb span {
    color: #F5A009;
    cursor: pointer
}

.breadcrumb span:hover {
    text-decoration: underline
}

.breadcrumb .sep {
    color: var(--muted)
}

.breadcrumb .current {
    font-weight: bold;
    color: #003438;
    cursor: default
}

.loading {
    padding: 18px;
    text-align: center;
    color: var(--muted)
}

.tree-container {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
}

/*Withdraw Design*/
.withdraw-container {
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.page {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	padding: 0;
	overflow: hidden;
	flex: 1;
	display: none;
}

.page.active {
	display: block;
}

.header {
	background: var(--primary);
	color: white;
	padding: 5px 20px;
	text-align: center;
	position: relative;
	flex-direction: column;
}

.header-icon {
	font-size: 2rem;
	margin-bottom: 0px;
	display: block;
}

@media (min-width: 1200px) {
  .header h2 {
    font-size: 1rem;
  }
}
.header h2 {
  font-size: 1rem;
}
.header h2 {
  margin-top: 0;
  margin-bottom: 0rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

.form-container {
	padding-top: 0px;
	padding-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
}

.form-group {
	margin-bottom: 0px;
}

.form-label {
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.form-control, .form-select {
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.error {
	border-color: var(--danger);
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.btn-primary {
	background: var(--primary);
	border: none;
	border-radius: 12px;
	padding: 14px;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
}

.btn-primary:disabled {
	background: #9ca3af;
	cursor: not-allowed;
	transform: none;
}

.btn-success {
	background: var(--success);
	border: none;
	border-radius: 12px;
	padding: 14px;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
}

.btn-warning {
	background: var(--warning);
	border: none;
	border-radius: 12px;
	padding: 14px;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
}

.balance-info {
	background: #f0f9ff;
	border: 2px solid #e0f2fe;
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 20px;
}

.balance-amount {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary);
	text-align: center;
}

.balance-label {
	color: #64748b;
	text-align: center;
	font-size: 0.9rem;
}

.fee-calculation {
	background: #f8fafc;
	border-radius: 8px;
	padding: 12px;
	margin-top: 10px;
	font-size: 0.9rem;
}

.fee-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}

.fee-row:last-child {
	margin-bottom: 0;
	border-top: 1px solid #e2e8f0;
	padding-top: 5px;
	font-weight: 600;
}

.insufficient-balance {
	background: #fef2f2;
	border: 2px solid #fecaca;
	border-radius: 12px;
	padding: 15px;
	margin: 10px 0;
	color: var(--danger);
	text-align: center;
}

.fee-info {
	background: #f8fafc;
	border-radius: 8px;
	padding: 10px;
	margin-top: 5px;
	font-size: 0.9rem;
	color: #64748b;
}

.otp-inputs {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin: 30px 0;
}

.otp-input {
	width: 50px;
	height: 60px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	transition: all 0.3s ease;
}

.otp-input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.otp-input:disabled {
	background-color: #f8f9fa;
	border-color: #dee2e6;
	color: #6c757d;
	cursor: not-allowed;
}

.resend-otp {
	text-align: center;
	margin-top: 20px;
}

.resend-otp a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.resend-otp a.disabled {
	color: #6c757d;
	pointer-events: none;
	text-decoration: none;
}

.amount-display {
	background: #f1f5f9;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	margin: 20px 0;
}

.amount-value {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary);
}

.info-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #e2e8f0;
}

.info-row:last-child {
	border-bottom: none;
}

.timeout-warning {
	background: var(--warning);
	color: white;
	padding: 15px;
	border-radius: 12px;
	text-align: center;
	margin: 20px 0;
	animation: pulse 2s infinite;
}

.timeout-expired {
	background: var(--danger);
	color: white;
	padding: 15px;
	border-radius: 12px;
	text-align: center;
	margin: 20px 0;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.02); }
	100% { transform: scale(1); }
}

/* Modal Styles */
.modal-content {
	border-radius: 20px;
	border: none;
}

.modal-header {
	background: var(--primary);
	color: white;
	border-radius: 20px 20px 0 0;
	border: none;
}

.confirmation-details {
	background: #f8fafc;
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
}

/* Animation */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.page.active {
	animation: slideIn 0.5s ease-out;
}

/* Responsive */
@media (max-width: 480px) {
	.otp-input {
		width: 45px;
		height: 55px;
	}
}
.loading-balance {
	text-align: center;
	color: var(--primary);
	padding: 10px;
}

.balance-error {
	background: #fef2f2;
	border: 2px solid #fecaca;
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 20px;
	color: var(--danger);
	text-align: center;
}

/* Prevent wrapping on small devices */
td {
	white-space: nowrap;
}

/* ✅ Prevent wrapping for Withdraw Date specifically */
td.withdraw-date {
	white-space: nowrap;
}
th, td.mobile-number {
	white-space: nowrap;
}

/* ✅ Deeper zebra striping for stronger contrast */
.table-borderless tbody tr:nth-child(odd) td {
	background-color: #e9ecef !important; /* deeper gray */
}

.table-borderless tbody tr:nth-child(even) td {
	background-color: #f8f9fa !important; /* lighter gray */
}
.card-header {
	background-color: #fff;
	border-bottom: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* Reload button styling */
.btn-reload {
	background-color: #025D6F;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease-in-out;
}

.btn-reload:hover {
	background-color: #014d5d;
}
.center-status {
	text-align: center;
}
.taka-icon {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.taka-icon::before {
    content: "\09F3";
}