/**
 * JX Tabs - Production CSS
 * Clean production code only - no demo styles
 * 
 * @package     JX Tabs
 * @version     1.0.0
 * @license     MIT
 * @date        10 December 2025
 */

/* ============================================
   CSS Variables - Theme Customization
   ============================================ */
:root {
    /* Tab Theme CSS Variables - Easy to customize! */
    --jx-theme-accent: #6366f1;              /* Primary accent/border color */
    --jx-theme-header-bg: #ffffff;          /* Header background */
    --jx-theme-header-text: #1f2937;       /* Header text color */
    --jx-theme-tab-bg: #ffffff;             /* Tab background */
    --jx-theme-tab-text: #1f2937;          /* Tab text color */
    --jx-theme-tab-border: #e5e7eb;        /* Tab border color */
    --jx-theme-tab-hover-bg: #f3f4f6;       /* Tab hover background */
    --jx-theme-tab-hover-text: #6366f1;    /* Tab hover text color */
    --jx-theme-tab-hover-border: #6366f1;  /* Tab hover border color */
    --jx-theme-tab-active-bg: #6366f1;      /* Active tab background */
    --jx-theme-tab-active-text: #ffffff;   /* Active tab text color */
    --jx-theme-tab-active-border: #6366f1; /* Active tab border color */
    --jx-theme-content-bg: #ffffff;         /* Content area background */
    --jx-theme-content-text: #1f2937;      /* Content text color */
    --jx-theme-content-border: #e5e7eb;    /* Content border color */
    
    /* Neumorphism theme variables */
    --jx-neumorphism-bg: #e0e5ec;           /* Neumorphism background */
    --jx-neumorphism-shadow-dark: #a3b1c6;  /* Neumorphism dark shadow */
    --jx-neumorphism-shadow-light: #ffffff; /* Neumorphism light shadow */
    
    /* Neon theme variables */
    --jx-neon-glow-color: var(--jx-theme-accent);  /* Neon glow color (uses accent) */
    --jx-neon-glow-intensity: 1;            /* Neon glow intensity (0-1) */
    
    /* Gradient theme variables */
    --jx-gradient-start: var(--jx-theme-accent);    /* Gradient start color */
    --jx-gradient-end: var(--jx-theme-accent);      /* Gradient end color (defaults to accent) */
    --jx-gradient-direction: 135deg;                /* Gradient direction */
}

/* ============================================
   Core Tab Container Styles
   ============================================ */
.jx-tabs-container {
    overflow: hidden;
    position: relative;
}

.jx-tabs-header {
    display: flex;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
    background: var(--jx-theme-header-bg, transparent);
    border-color: var(--jx-theme-accent, #6366f1);
    color: var(--jx-theme-header-text, #1f2937);
}

/* Alignment options */
.jx-tabs-header.jx-align-start {
    justify-content: flex-start;
}

.jx-tabs-header.jx-align-center {
    justify-content: center;
}

.jx-tabs-header.jx-align-end {
    justify-content: flex-end;
}

.jx-tab {
    padding: 16px 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    user-select: none;
    white-space: nowrap;
    border: none;
    background: var(--jx-theme-tab-bg, transparent);
    color: var(--jx-theme-tab-text, #1f2937);
    border-color: var(--jx-theme-tab-border, #e5e7eb);
    text-align: inherit;
}

.jx-tab:hover:not(.jx-active) {
    background: var(--jx-theme-tab-hover-bg, #f3f4f6);
    color: var(--jx-theme-tab-hover-text, var(--jx-theme-accent, #6366f1));
    border-color: var(--jx-theme-tab-hover-border, var(--jx-theme-accent, #6366f1));
}

.jx-tab.jx-active {
    background: var(--jx-theme-tab-active-bg, var(--jx-theme-accent, #6366f1));
    color: var(--jx-theme-tab-active-text, #ffffff);
    border-color: var(--jx-theme-tab-active-border, var(--jx-theme-accent, #6366f1));
}

/* Focus styles for keyboard navigation */
.jx-tab:focus {
    outline: 2px solid var(--jx-theme-accent, #6366f1);
    outline-offset: 2px;
    z-index: 10;
}

.jx-tab:focus:not(:focus-visible) {
    outline: none;
}

.jx-tab:focus-visible {
    outline: 3px solid var(--jx-theme-accent, #6366f1);
    outline-offset: 2px;
    z-index: 10;
}

/* Ensure tabs are focusable */
.jx-tab[tabindex="0"] {
    cursor: pointer;
}

.jx-tab[tabindex="-1"] {
    cursor: pointer;
}

.jx-tab-content {
    padding: 20px 24px;
    min-height: 0;
    position: relative;
    background: var(--jx-theme-content-bg, #ffffff);
    color: var(--jx-theme-content-text, #1f2937);
    border-color: var(--jx-theme-content-border, #e5e7eb);
}

.jx-tab-label {
    display: inline-block;
}

.jx-content-section {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jx-content-section.jx-active {
    display: block;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .jx-content-section {
        animation: none;
    }
    
    .jx-tab {
        transition: none;
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.jx-content-section h3 {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--jx-theme-content-text, #1f2937);
    line-height: 1.2;
}

.jx-content-section p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--jx-theme-content-text, #6b7280);
    font-size: 16px;
}

.jx-content-section p:last-child {
    margin-bottom: 0;
}

.jx-content-section strong {
    color: var(--jx-theme-accent, #6366f1);
    font-weight: 600;
}

/* Style 1: Classic - no background on header */
.jx-style-classic .jx-tabs-header {
    border-bottom: 2px solid var(--jx-theme-accent);
    background: transparent !important;
}
.jx-style-classic .jx-tab {
    border: 1px solid var(--jx-theme-tab-border);
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-right: 2px;
}
.jx-style-classic .jx-tab.jx-active {
    position: relative;
    top: 2px;
    z-index: 1;
    border-color: var(--jx-theme-accent);
}
.jx-style-classic .jx-tab-content {
    border: 1px solid var(--jx-theme-accent);
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Style 2: Pill */
.jx-style-pill .jx-tabs-header {
    gap: 8px;
    padding: 4px;
    border-radius: 50px;
}
.jx-style-pill .jx-tab {
    border-radius: 50px;
    border: none;
}
.jx-style-pill .jx-tab-content {
    margin-top: 16px;
    border-radius: 12px;
    border: 1px solid var(--jx-theme-tab-border, #e5e7eb);
}

/* Style 3: Underline */
.jx-style-underline .jx-tabs-header {
    border-bottom: 2px solid var(--jx-theme-tab-border);
    gap: 4px;
    background: transparent !important;
}
.jx-style-underline .jx-tab,
.jx-style-underline .jx-tab:hover,
.jx-style-underline .jx-tab.jx-active {
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent !important;
}
.jx-style-underline .jx-tab.jx-active {
    border-bottom-color: var(--jx-theme-accent);
}
.jx-style-underline .jx-tab-content {
    padding-top: 24px;
}

/* Style 4: Box - no background on header */
.jx-style-box .jx-tabs-header {
    gap: 8px;
    flex-wrap: wrap;
    background: transparent !important;
}
.jx-style-box .jx-tab {
    border: 2px solid var(--jx-theme-tab-border, #e5e7eb);
    border-radius: 8px;
}
.jx-style-box .jx-tab-content {
    margin-top: 16px;
    border: 2px solid var(--jx-theme-tab-border, #e5e7eb);
    border-radius: 8px;
}

/* Style 5: Minimal */
.jx-style-minimal .jx-tabs-header {
    gap: 24px;
    background: transparent !important;
}
.jx-style-minimal .jx-tab,
.jx-style-minimal .jx-tab:hover,
.jx-style-minimal .jx-tab.jx-active {
    border: none;
    background: transparent !important;
    padding: 12px 4px;
    font-weight: 600;
}
.jx-style-minimal .jx-tab.jx-active {
    border-bottom: 2px solid var(--jx-theme-accent);
}
.jx-style-minimal .jx-tab-content {
    padding-top: 24px;
}

/* Style 6: Vertical */
.jx-tabs-container.jx-style-vertical {
    display: flex;
    gap: 0;
    align-items: stretch;
}
.jx-style-vertical .jx-tabs-header {
    flex-direction: column;
    border-right: 2px solid var(--jx-theme-accent);
    border-bottom: none;
    min-width: 140px;
    flex-wrap: nowrap;
}
.jx-style-vertical .jx-tab {
    border: 1px solid var(--jx-theme-tab-border);
    border-right: none;
    text-align: left;
}
.jx-style-vertical .jx-tab.jx-active {
    position: relative;
    right: 2px;
    border-color: var(--jx-theme-accent);
}
.jx-style-vertical .jx-tab-content {
    flex: 1;
    border: 1px solid var(--jx-theme-accent);
    min-width: 0;
}

/* Style 7: Floating - no background on header */
.jx-style-floating.jx-tabs-container {
    overflow: visible;
    padding-top: 4px;
}
.jx-style-floating .jx-tabs-header {
    gap: 12px;
    margin-bottom: 16px;
    background: transparent !important;
}
.jx-style-floating .jx-tab {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid var(--jx-theme-tab-border, #e5e7eb);
}
.jx-style-floating .jx-tab.jx-active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    border: 1px solid var(--jx-theme-tab-active-bg, #e5e7eb);
}
.jx-style-floating .jx-tab-content {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Style 8: Segmented */
.jx-style-segmented .jx-tabs-header {
    border: 2px solid var(--jx-theme-accent);
    border-radius: 8px;
    padding: 4px;
    display: inline-flex;
    background: rgba(0,0,0,0.03);
}
.jx-style-segmented .jx-tab {
    border: none;
    border-radius: 6px;
}
.jx-style-segmented .jx-tab-content {
    margin-top: 16px;
    border-radius: 8px;
}

/* Style 9: Arrow */
.jx-style-arrow .jx-tabs-header {
    gap: 0;
    overflow: visible;
    padding-right: 8px;
}
.jx-style-arrow .jx-tab {
    border: 1px solid var(--jx-theme-tab-border);
    padding-right: 34px;
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    margin-left: -10px;
    position: relative;
    z-index: 1;
}
.jx-style-arrow .jx-tab.jx-active {
    border-color: var(--jx-theme-accent);
    z-index: 3;
}
.jx-style-arrow .jx-tab:hover {
    z-index: 2;
}
.jx-style-arrow .jx-tab:first-child {
    margin-left: 0;
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}
.jx-style-arrow .jx-tab-content {
    margin-top: 16px;
    border: 1px solid var(--jx-theme-tab-border, #e5e7eb);
    border-radius: 4px;
}

/* Style 10: Material */
.jx-style-material .jx-tabs-header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}
.jx-style-material .jx-tab {
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}
.jx-style-material .jx-tab.jx-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: currentColor;
}
.jx-style-material .jx-tab-content {
    padding-top: 24px;
}

/* Style 11: Bubble */
.jx-style-bubble .jx-tabs-header {
    gap: 8px;
    background: transparent !important;
}
.jx-style-bubble .jx-tab {
    border-radius: 20px 20px 0 0;
    border: 2px solid var(--jx-theme-tab-border);
    border-bottom: none;
    padding: 12px 24px 8px;
}
.jx-style-bubble .jx-tab.jx-active {
    border-bottom: 2px solid var(--jx-theme-accent);
    border-color: var(--jx-theme-accent);
}
.jx-style-bubble .jx-tab-content {
    border: 2px solid var(--jx-theme-accent);
    border-radius: 0 8px 8px 8px;
}

/* Style 12: Gradient */
.jx-style-gradient .jx-tabs-header {
    gap: 4px;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(var(--jx-gradient-direction, 135deg), var(--jx-gradient-start), var(--jx-gradient-end));
}
.jx-style-gradient .jx-tab {
    border: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.jx-style-gradient .jx-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.jx-style-gradient .jx-tab.jx-active::before {
    opacity: 0.2;
}
.jx-style-gradient .jx-tab-content {
    margin-top: 16px;
    border-radius: 12px;
    border: 1px solid var(--jx-theme-tab-border, #e5e7eb);
}

/* Style 13: Sidebar */
.jx-style-sidebar.jx-tabs-container {
    display: flex;
    flex-direction: row;
    overflow: visible;
}
.jx-style-sidebar.jx-tabs-container .jx-tabs-header {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    min-width: 160px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}
.jx-style-sidebar.jx-tabs-container .jx-tab {
    border-radius: 6px;
    text-align: left;
    border: none;
    width: 100%;
}
.jx-style-sidebar.jx-tabs-container .jx-tab-content {
    flex: 1;
    margin-left: 16px;
    border-radius: 8px;
    min-width: 0;
}

/* Style 14: Elevated */
.jx-tabs-container.jx-style-elevated {
	overflow: visible;
}
.jx-style-elevated .jx-tabs-header {
    gap: 12px;
    margin-bottom: -8px;
    position: relative;
    z-index: 1;
    background: transparent !important;
}
.jx-style-elevated .jx-tab {
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    border: none;
}
.jx-style-elevated .jx-tab.jx-active {
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.jx-style-elevated .jx-tab-content {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Style 15: Neon */
.jx-style-neon .jx-tabs-header {
    gap: 8px;
    background: transparent !important;
}
.jx-style-neon .jx-tab {
    border: 2px solid var(--jx-theme-tab-border, #e5e7eb);
    border-radius: 4px;
    position: relative;
}
.jx-style-neon .jx-tab.jx-active {
    box-shadow: 0 0 10px var(--jx-neon-glow-color), 
                0 0 20px var(--jx-neon-glow-color), 
                0 0 30px var(--jx-neon-glow-color);
    border-color: var(--jx-neon-glow-color);
    color: var(--jx-neon-glow-color);
}
.jx-style-neon .jx-tab-content {
    margin-top: 16px;
    border: 2px solid var(--jx-theme-tab-border, #e5e7eb);
    border-radius: 4px;
}

/* Style 16: Ribbon */
.jx-style-ribbon .jx-tabs-header {
    gap: 0;
    overflow: visible;
    padding-left: 4px;
}
.jx-style-ribbon .jx-tab {
    border: 1px solid var(--jx-theme-tab-border);
    position: relative;
    padding-left: 28px;
    margin-left: -8px;
    -webkit-clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
    z-index: 1;
}
.jx-style-ribbon .jx-tab:first-child {
    margin-left: 0;
    padding-left: 20px;
    -webkit-clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.jx-style-ribbon .jx-tab.jx-active {
    z-index: 3;
    border-color: var(--jx-theme-accent);
}
.jx-style-ribbon .jx-tab:hover {
    z-index: 2;
}
.jx-style-ribbon .jx-tab-content {
    margin-top: 16px;
    border: 1px solid var(--jx-theme-accent);
    border-radius: 4px;
}

/* Style 17: Skewed */
.jx-style-skewed.jx-tabs-container {
    overflow: visible;
}
.jx-style-skewed .jx-tabs-header {
	gap: 8px;
	padding: 4px 14px;
	margin-left: 0;
	margin-right: 0;
	background: transparent !important;
	overflow: visible;
}
.jx-style-skewed .jx-tab {
    transform: skewX(-10deg);
    border: 1px solid var(--jx-theme-tab-border);
    padding: 14px 28px;
    position: relative;
}
.jx-style-skewed .jx-tab.jx-active {
    border-color: var(--jx-theme-accent);
    z-index: 2;
}
.jx-style-skewed .jx-tab .jx-tab-label,
.jx-style-skewed .jx-tab > span {
    display: inline-block;
    transform: skewX(10deg);
}
.jx-style-skewed .jx-tab-content {
    margin-top: 16px;
    border: 1px solid var(--jx-theme-accent);
    border-radius: 4px;
}

/* Style 18: Border Bottom */
.jx-style-border-bottom .jx-tabs-header {
    border-bottom: 1px solid var(--jx-theme-tab-border);
    gap: 24px;
    background: transparent !important;
}
.jx-style-border-bottom .jx-tab,
.jx-style-border-bottom .jx-tab:hover {
    border: none;
    background: transparent !important;
    padding-bottom: 16px;
    margin-bottom: -1px;
}
.jx-style-border-bottom .jx-tab.jx-active {
    border-bottom: 3px solid var(--jx-theme-accent);
    color: var(--jx-theme-accent);
    background: transparent !important;
}
.jx-style-border-bottom .jx-tab-content {
    padding-top: 24px;
}

/* Style 19: Card Stack */
.jx-style-card-stack.jx-tabs-container {
    overflow: visible;
    padding-top: 6px;
}
.jx-style-card-stack .jx-tabs-header {
    gap: 0;
    background: transparent !important;
}
.jx-style-card-stack .jx-tab {
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid var(--jx-theme-tab-border);
    border-bottom: none;
    margin-left: -16px;
    z-index: 1;
}
.jx-style-card-stack .jx-tab.jx-active {
    z-index: 10;
    transform: translateY(-4px);
    border-color: var(--jx-theme-accent);
}
.jx-style-card-stack .jx-tab:hover:not(.jx-active) {
    z-index: 5;
}
.jx-style-card-stack .jx-tab-content {
    border: 1px solid var(--jx-theme-accent);
    border-radius: 0 8px 8px 8px;
    position: relative;
    z-index: 9;
}

/* Style 20: Neumorphism */
.jx-style-neumorphism .jx-tabs-header {
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: var(--jx-neumorphism-bg, #e0e5ec);
}
.jx-style-neumorphism .jx-tab {
    border: none;
    border-radius: 12px;
    box-shadow: 5px 5px 10px var(--jx-neumorphism-shadow-dark, #a3b1c6), -5px -5px 10px var(--jx-neumorphism-shadow-light, #ffffff);
}
.jx-style-neumorphism .jx-tab.jx-active {
    box-shadow: inset 5px 5px 10px var(--jx-neumorphism-shadow-dark, #a3b1c6), inset -5px -5px 10px var(--jx-neumorphism-shadow-light, #ffffff);
}
.jx-style-neumorphism .jx-tab-content {
    margin-top: 16px;
    border-radius: 16px;
    box-shadow: 5px 5px 15px var(--jx-neumorphism-shadow-dark, #a3b1c6), -5px -5px 15px var(--jx-neumorphism-shadow-light, #ffffff);
    border: none;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .jx-tab-content {
        padding: 20px;
    }

    .jx-content-section h3 {
        font-size: 24px;
    }

    .jx-tabs-header {
        flex-wrap: wrap;
    }

    .jx-tab {
        flex: 1 1 auto;
        min-width: 0;
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Vertical / sidebar become stacked accordion-friendly layouts on tablet */
    .jx-tabs-container.jx-style-vertical,
    .jx-style-sidebar.jx-tabs-container {
        flex-direction: column;
    }

    .jx-style-vertical .jx-tabs-header,
    .jx-style-sidebar.jx-tabs-container .jx-tabs-header {
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        min-width: 0;
        width: 100%;
        gap: 8px;
    }

    .jx-style-vertical .jx-tab,
    .jx-style-sidebar.jx-tabs-container .jx-tab {
        border-right: 1px solid var(--jx-theme-tab-border, #e5e7eb);
        width: auto;
        flex: 1 1 auto;
    }

    .jx-style-vertical .jx-tab.jx-active {
        right: 0;
    }

    .jx-style-sidebar.jx-tabs-container .jx-tab-content {
        margin-left: 0;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .jx-tab {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .jx-tabs-header {
        flex-direction: column;
        gap: 8px;
    }

    /* Keep shape styles horizontal so arrow / ribbon / skewed still look right */
    .jx-style-arrow .jx-tabs-header,
    .jx-style-ribbon .jx-tabs-header,
    .jx-style-skewed .jx-tabs-header {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    .jx-style-arrow .jx-tab,
    .jx-style-ribbon .jx-tab,
    .jx-style-skewed .jx-tab {
        width: auto;
        flex: 0 0 auto;
        margin-bottom: 0;
        border-radius: 0;
    }

    /* Override style-specific border-radius for mobile - using higher specificity */
    .jx-tabs-container .jx-style-classic .jx-tab,
    .jx-tabs-container .jx-style-classic .jx-tab.jx-active {
        border-radius: 8px;
        border: 1px solid var(--jx-theme-tab-border, #e5e7eb);
        margin-right: 0;
        margin-bottom: 8px;
    }

    .jx-tabs-container .jx-style-classic .jx-tab.jx-active {
        top: 0;
    }

    .jx-tabs-container .jx-style-bubble .jx-tab {
        border-radius: 8px;
        border: 2px solid var(--jx-theme-tab-border, #e5e7eb);
        margin-bottom: 8px;
    }

    .jx-tabs-container .jx-style-card-stack .jx-tab {
        border-radius: 8px;
        border: 1px solid var(--jx-theme-tab-border, #e5e7eb);
        margin-bottom: 8px;
    }

    .jx-tabs-container .jx-style-card-stack .jx-tab.jx-active {
        transform: none;
    }
}
