.sleek-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 15px;
}

.sleek-header img {
    height: 50px;
}

.sleek-banner {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    padding: 10px 20px;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.sleek-tab-content {
    display: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.sleek-tab-content.active {
    display: block;
}


.nav-tab-wrapper {
    margin-bottom: 20px;
}
.nav-tab {
    text-decoration: none !important;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
}

/* Card Styles */
.sleek-ea-widgets-bg {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Widgets List */
.sleek-ea-widgets-flex {
    display: flex;
    align-items: center;
}

.sleek-ea-widgets-center {
    align-items: center;
}

.sleek-ea-widgets-between {
    justify-content: space-between;
}

.sleek-ea-widgets-space {
    gap: 15px;
}

.sleek-ea-widgets-mt {
    margin-top: 20px;
}

/* Widget Item */
.sleek-ea-widgets-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.sleek-ea-widgets-item:hover {
    background: #eef1f4;
}

/* Widget Icon */
.sleek-ea-widgets-item img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

/* Switch Toggle */
.sleek-ea-widgets-toggle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.sleek-ea-widgets-toggle + div {
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 50px;
    position: relative;
    transition: background 0.3s ease;
}

.sleek-ea-widgets-toggle + div::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 1px;
    left: 2px;
    transition: transform 0.3s ease;
}

.sleek-ea-widgets-toggle:checked + div {
    background: #28a745;
}

.sleek-ea-widgets-toggle:checked + div::after {
    transform: translateX(20px);
}

/* Cards Section */
.sleek-cards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sleek-card {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sleek-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sleek-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    background-size: contain;
}

/* Tab Container */
.nav-tab-wrapper {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

/* Each Tab */
.nav-tab {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    color: #555;
    background: #fff;
    border-radius: 6px;
    margin-right: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
}

/* Icons Inside Tabs */
.nav-tab .dashicons {
    font-size: 18px;
    margin-right: 8px;
}

/* Hover Effect */
.nav-tab:hover {
    background: #00a5e5;
    color: #fff;
    border-color: #00a5e5;
}

/* Active Tab */
.nav-tab-active {
    background: #00a5e5;
    color: #fff;
    border-color: #00a5e5;
}


/* Apply Poppins to all elements inside the plugin */
.sleek-admin-wrapper-font {
    font-family: 'Poppins', sans-serif !important;
}

/* Ensure headings also use Poppins */
.sleek-admin-wrapper-font h1,
.sleek-admin-wrapper-font h2,
.sleek-admin-wrapper-font h3,
.sleek-admin-wrapper-font h4,
.sleek-admin-wrapper-font h5,
.sleek-admin-wrapper-font h6 {
    font-family: 'Poppins', sans-serif !important;
}


.sleek-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sleek-header img {
    height: 50px;
}

.sleek-banner {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    padding: 10px 20px;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.sleek-banner span {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-right: 20px;
}

.sleek-banner p {
    font-size: 14px;
    color: #fff;
    margin-right: 20px;
}

.sleek-button {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.sleek-button:hover {
    background: #00A5E5;
    color: #fff;
}

.sleek-toggle-button-enable {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    font-weight: bold;
    padding: 15px 30px;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    background: #28A745;
    transition: background 0.3s ease;
}
.sleek-toggle-button-disable {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    font-weight: bold;
    padding: 15px 30px;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    background: #FF5F1D;
    transition: background 0.3s ease;
}
.sleek-toggle-button:hover {
    opacity: 0.8;
}