.tp-container-1dc4e86d {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Pill Toggle Wrapper Container */
.tp-toggle-header {
    display: inline-flex;
    position: relative;
    background-color: #f1f1f1;
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 25px;
    user-select: none;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Base pill/label styles */
.tp-label {
    position: relative;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 40px;
    text-align: center;
    white-space: nowrap;
}

.tp-label.active {
    color: #ffffff;
}

/* The Sliding Active Pill Indicator */
.tp-toggle-wrapper {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    background-color: #1a1a1a;
    border-radius: 40px;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Keep original elements hidden since structure uses them for triggers */
.tp-toggle-switch {
    display: none;
}

/* Content Panels */
.tp-panels-wrapper {
    width: 100%;
}
.tp-panel {
    display: none;
    width: 100%;
}
.tp-panel.active {
    display: block;
    animation: tpFadeIn 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes tpFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
