/* FULL WIDTH BREAKOUT */
.ant-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* LABEL (fixed width) */
.ant-label {
    min-width: 180px;
    background: #ffc107;
    color: #000;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
}

/* ARROW */
.ant-label:after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 20px solid #ffc107;
}

/* CONTENT FULL WIDTH */
.ant-content {
    flex: 1;
    width: 100%;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;

    /* 🔥 THIS IS THE KEY FIX */
    margin-left: -20px; /* overlap arrow nicely */
    padding-left: 40px;
}

/* TRACK */
.ant-track {
    display: inline-block;
    white-space: nowrap;
    width: max-content;
}

/* ITEMS */
.ant-item {
    display: inline-block;
    margin-right: 40px;
}