
div.mainmenu.doli2wpwoowpml::before {
    content: "";
}
div.mainmenu.doli2wpwoowpml {
    background-image: url("/htdocs/custom/doli2wpwoowpml/img/Doli2WpWooWpml.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent !important;
}

div.mainmenu.doli2wpwoowpml:hover {
    background-color: transparent !important;
}

/* Module Tabs Grid Layout Styles */
.module-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.module-toolbar {
    gap: 0;
    align-items: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px;
}

.module-toolbar .btn {
    background: transparent;
    color: #111827;
    border: 0;
    box-shadow: none;
}

.module-toolbar .btn:hover {
    background: #e5e7eb;
    border: 0;
    box-shadow: none;
}

.module-toolbar .module-btn {
    border-right: 1px solid #e5e7eb;
}

.module-toolbar .module-btn:last-child {
    border-right: 0;
}

.module-btn {
    flex: 0 0 280px;
    width: 280px;
    white-space: normal;
}

.btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 24px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #111827;
    background: #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    box-shadow: 0 3px 4px rgba(0,0,0,0.08);
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: #d1d5db;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(99,102,241,0.25);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    background: #10b981;
}

.btn i {
    position: static;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #4b5563;
    font-size: 42px;
}

.btn-primary::before { background: #10b981; }
.btn-success::before { background: #ef4444; }
.btn-info::before, .btn-dark::before { background: #8b5cf6; }

.btn-accent-amber::before { background: #f59e0b; }


.module-tab-box {
    flex: 0 0 180px;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 14px;
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.module-tab-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.10);
    border-color: rgba(99,102,241,0.25);
}

.module-tab-icon {
    font-size: 22px;
    margin-bottom: 6px;
    color: #374151;
}

.module-tab-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.module-tab-box a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.module-tab-box a:hover {
    text-decoration: none;
    color: inherit;
}

/* Individual Box Styles with Solid Colors and Icons */
.setup-box { --accent: #3b82f6; }

.setup-box .module-tab-icon::before {
	content: "⚙️";
}

.wordpress-box { --accent: #ef4444; }

.wordpress-box .module-tab-icon::before {
	content: "🌐";
}

.bulk-box { --accent: #0ea5e9; }

.bulk-box .module-tab-icon::before {
	content: "📋";
}

.order-box { --accent: #10b981; }

.order-box .module-tab-icon::before {
	content: "🛒";
}

.variant-box { --accent: #f59e0b; }

.variant-box .module-tab-icon::before {
	content: "📦";
}

.url-box { --accent: #8b5cf6; }

.url-box .module-tab-icon::before {
	content: "🔗";
}

.error-box { --accent: #f97316; }

.error-box .module-tab-icon::before {
	content: "⚠️";
}

.logs-box { --accent: #6366f1; }

.logs-box .module-tab-icon::before {
	content: "📊";
}

.about-box { --accent: #14b8a6; }

.about-box .module-tab-icon::before {
	content: "ℹ️";
}

/* Enhanced Grid and Flex Layouts */
.doli-grid {
	display: grid;
	gap: 1rem;
	width: 100%;
}

.doli-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.doli-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.doli-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.doli-grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.doli-flex {
	display: flex;
	gap: 1rem;
}

.doli-flex-wrap {
	flex-wrap: wrap;
}

.doli-flex-column {
	flex-direction: column;
}

.doli-flex-center {
	justify-content: center;
	align-items: center;
}

.doli-flex-between {
	justify-content: space-between;
	align-items: center;
}

.doli-flex-1 {
	flex: 1;
}

.doli-flex-2 {
	flex: 2;
}


.doli-flex-3 {
	flex: 3;
}

/* Card Components */
.doli-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.doli-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transform: translateY(-2px);
}

.doli-card-header {
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.doli-card-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: #333;
}

.doli-card-body {
	padding: 0;
}

.doli-card-footer {
	border-top: 1px solid #e0e0e0;
	padding-top: 1rem;
	margin-top: 1rem;
}

/* Status Cards */
.status-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.status-card-modern {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 12px;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.status-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	transform: translate(30px, -30px);
}

.status-card-modern:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.status-card-modern.success {
	background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.status-card-modern.warning {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.status-card-modern.info {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.status-card-modern.error {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

#d2w-sync-msg {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 8px;
}
#d2w-sync-msg i { margin-right: 6px; }
#d2w-sync-msg.info {
    background: #e8f4ff;
    color: #0b6dbd;
    border: 1px solid #bcdcff;
}
#d2w-sync-msg.ok {
    background: #eafaf1;
    color: #1e7e34;
    border: 1px solid #c6f1d6;
}
#d2w-sync-msg.error {
    background: #fdecea;
    color: #b71c1c;
    border: 1px solid #f5c6cb;
}

/* Data Tables */
.doli-table-responsive {
	overflow-x: auto;
	margin: 1rem 0;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.doli-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	min-width: 600px;
}

.doli-table th {
	background: #f8f9fa;
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #495057;
	border-bottom: 2px solid #dee2e6;
}

.doli-table td {
	padding: 1rem;
	border-bottom: 1px solid #dee2e6;
	vertical-align: middle;
}

.doli-table tr:hover {
	background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.doli-grid-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.doli-grid-3,
	.doli-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.doli-flex {
		flex-direction: column;
	}
	
	.status-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.module-tabs-container {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.doli-grid-2,
	.doli-grid-3,
	.doli-grid-4 {
		grid-template-columns: 1fr;
	}
	
	.status-cards-grid {
		grid-template-columns: 1fr;
	}
	
	.doli-card {
		padding: 1rem;
	}
	
	.doli-table th,
	.doli-table td {
		padding: 0.75rem 0.5rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.module-tabs-container {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	
	.doli-card {
		padding: 0.75rem;
	}
	
	.status-card-modern {
		padding: 1rem;
	}
	
	.doli-table {
		min-width: 100%;
		font-size: 0.8rem;
	}
	
	.doli-table th,
	.doli-table td {
		padding: 0.5rem 0.25rem;
	}
}

.myclasscss {
	/* ... */
}

/* Published Product Badge Styles */
.badge.badge-status4.published-badge {
	background-color: #28a745 !important;
	color: white !important;
	border: 1px solid #1e7e34 !important;
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 5px;
	font-weight: normal;
}

.badge.badge-status4.published-badge:hover {
	background-color: #218838 !important;
	border-color: #1e7e34 !important;
}

/* Product list published status */
.statusref .published-badge {
	display: inline-block;
	vertical-align: middle;
}

/* Product card published status */
.fiche .published-badge {
	margin-left: 10px;
}

/* Published Product Tab Bar Background */
.dragDropAreaTabBar {
	background-color: #e8f5e8 !important; /* Soft green background */
	border-radius: 4px;
	padding: 2px;
	transition: background-color 0.3s ease;
}

/* Enhanced styling for published products */
.product-published .dragDropAreaTabBar {
	background-color: #d4edda !important; /* Slightly darker soft green for published products */
	border: 1px solid #c3e6cb;
}

/* Hover effect for tab bar */
.dragDropAreaTabBar:hover {
	background-color: #d1ecf1 !important;
}


.mod-doli2wpwoowpml.page-index .fichecenter {
    width: 100% !important;
}
.btn.icon-only {
    padding: 28px 28px;
}

.btn.icon-only::before {
    display: none;
}

.btn.icon-only i {
    position: static;
    transform: none;
}
.mod-doli2wpwoowpml.page-index .fichethirdleft {
    width: 100% !important;
}
