/* Basic styling for the toggle switch */
.bundle-eligible-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.bundle-eligible-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.bundle-eligible-toggle .toggle-label {
    margin-left: 10px;
    font-size: 0.9rem;
}
.bundle-eligible-toggle .toggle-slider {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    transition: background-color 0.2s;
}
.bundle-eligible-toggle .toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s;
}
.bundle-eligible-toggle input:checked + .toggle-slider {
    background-color: #46b450; /* Green */
}
.bundle-eligible-toggle input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* Shrink text size for the filter widget */
#bundle-eligible-filter .widget-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
} 