.cf-d1376383-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: transparent; /* Removed card background */
    box-shadow: none; /* Removed card shadow */
    border: none; /* Removed card border */
    box-sizing: border-box;
    width: 100%;
}

.cf-d1376383-left {
    flex: 1;
    min-width: 0;
}

.cf-d1376383-pills-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    padding: 4px 0;
}

.cf-d1376383-pills-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.cf-d1376383-pill {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cf-d1376383-right {
    flex-shrink: 0;
}

.cf-d1376383-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #F3F4F6;
    border-radius: 8px;
    padding: 8px 14px;
    border: 1px solid #E5E7EB;
}

.cf-d1376383-dropdown-icon {
    display: inline-flex;
    margin-right: 8px;
    color: #4B5563;
}

.cf-d1376383-dropdown-label {
    font-size: 14px;
    color: #4B5563;
    font-weight: 500;
    margin-right: 6px;
    white-space: nowrap;
}

.cf-d1376383-select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
    outline: none;
    padding-right: 8px;
}

@media (max-width: 768px) {
    .cf-d1376383-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cf-d1376383-right {
        display: flex;
        justify-content: flex-start;
    }

    .cf-d1376383-dropdown-wrapper {
        width: 100%;
        justify-content: space-between;
    }
}
