.wpds-admin-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wpds-admin-card h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 1.3em;
}

.wpds-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wpds-flex-1 {
    flex: 1;
    min-width: 300px;
}

.wpds-provider-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.wpds-provider-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpds-provider-logo {
    font-weight: bold;
    font-size: 1.2em;
    color: #007cba;
}

.wpds-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.wpds-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wpds-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.wpds-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .wpds-slider {
    background-color: #2271b1;
}

input:focus + .wpds-slider {
    box-shadow: 0 0 1px #2271b1;
}

input:checked + .wpds-slider:before {
    transform: translateX(18px);
}

/* Dashboard Status Styles */
.wpds-status-card {
    width: 350px;
}

.wpds-status-card h2 {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3338;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: none;
}

.wpds-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f6fb;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.wpds-status-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpds-status-info .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.wpds-status-info .dashicons-cloud {
    color: #2271b1;
}

.wpds-status-info .dashicons-clock {
    color: #2271b1;
}

.wpds-status-label {
    font-weight: 500;
    font-size: 14px;
}

.wpds-status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.wpds-status-badge.connected,
.wpds-status-badge.active {
    background-color: #e7f6ed;
    color: #2e7d32;
}

.wpds-status-badge.disconnected,
.wpds-status-badge.inactive {
    background-color: #fbeae5;
    color: #d32f2f;
}

.wpds-btn-logs {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #2271b1;
    color: #2271b1;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.wpds-btn-logs:hover {
    background: #f0f6fb;
}

/* Stats Cards Grid */
.wpds-stats-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.wpds-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wpds-stat-card-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wpds-stat-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpds-stat-icon-box .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.wpds-stat-icon-box.total-products {
    background-color: #f0f7ff;
    color: #006adc;
}

.wpds-stat-icon-box.in-stock {
    background-color: #f0fdf4;
    color: #15803d;
}

.wpds-stat-icon-box.out-of-stock {
    background-color: #fff1f2;
    color: #be123c;
}

.wpds-stat-icon-box.global-margin {
    background-color: #fffaf0;
    color: #92400e;
}

.wpds-stat-icon-box.total-orders {
    background-color: #f5f3ff;
    color: #7c3aed;
}

.wpds-stat-icon-box.sync-time {
    background-color: #f1f5f9;
    color: #475569;
}

.wpds-stat-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.wpds-stat-value {
    color: #0f172a;
    font-size: 28px;
    font-weight: 700;
}

/* SweetAlert Custom Styles */
.wpds-swal2-title {
    line-height: 1.4 !important;
    padding-bottom: 10px !important;
}

.wpds-swal2-reference {
    display: block;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Category Table Styles */
