/* Add this to your Additional CSS */
.jet-smart-filters-select .jet-select__control.hide-original-select {
    display: none;
}

/* Container for the new tabs */
.custom-tabs-container {
    /* border-bottom: 2px solid #e0e0e0; */
    /* padding-bottom: 5px; */
    /* margin-bottom: 20px; 
    /* Add some space below the tabs */
    display: flex;
}

/* Individual tab styling */
.custom-tab {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    color: #555;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.custom-tab:hover {
    color: #000;
}

/* Active tab styling */
.custom-tab.active {
    color: #2e8b57; /* Green color for the active tab */
    font-weight: bold;
}

/* The green underline for the active tab */
.custom-tab.active::after {
    content: '';
    position: absolute;
    bottom: -7px; /* Aligns with the container's bottom border */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #2e8b57;
    border-radius: 2px;
}

/* IMPORTANT: This hides the original Jet Form Builder select field.
  Make this selector more specific if you don't want to hide all selects
  with this class on the page. For example:
  .my-custom-form-class .jet-select__control { display: none; }
*/
.jet-select__control {
    display: none;
}