#softglaze-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: left;
}

#softglaze-filter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#softglaze-filter-form button {
    padding: 10px 20px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#softglaze-filter-form button:hover {
    background: #005bb5;
}

.softglaze-checkbox-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 15px;
    margin-bottom: 20px;
}

.softglaze-checkbox-label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: .875rem;
    line-height: 1.25rem;
    gap: 10px;
}

/* Hide default radio button */
.softglaze-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom Circle Checkbox */
.softglaze-checkbox {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 5px solid #000000;
    border-radius: 50%;
    position: relative;
}

/* Fill Circle with Red When Selected */
.softglaze-checkbox-label input:checked + .softglaze-checkbox {
    background-color: rgb(255, 255, 255);
    border-color: red;
}

/* Grid Layout for Logos */
.softglaze-brand-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns */
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Brand Filter Items */
.softglaze-brand-label {
    display: flex;
    align-items: center;
    flex-direction: row; /* Ensure checkbox stays before logo */
    gap: 10px;
    padding: 10px;
    border: 1px solid rgb(226, 232, 240);
    background-color: rgb(255, 255, 255);
    border-radius: .25rem;
    transition: .15s ease-in-out;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    cursor: pointer;
    width: 100%;
    height: auto;
}

/* Ensure Checkbox is Before the Logo */
.softglaze-brand-label input {
    position: relative;
    opacity: 1;
    cursor: pointer;
    margin-right: 8px;
}

/* Remove Custom Circle Checkboxes */
.softglaze-brand-checkbox {
    display: none !important;
}

/* Ensure Brand Logos are Displayed Properly */
.softglaze-brand-logo {
    width: 100%;
    max-width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
    vertical-align: middle;
}

/* Ensure Image is Displayed Properly */
.object-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.h-14 {
    height: 3.5rem;
}

/* Transition Effects */
.ease-in-out {
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}

.duration-150 {
    transition-duration: .15s;
}

/* Box Shadows */
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* Text Colors */
.text-pink-500 {
    --tw-text-opacity: 1;
    color: rgb(246 114 128 / var(--tw-text-opacity, 1));
}

/* Padding & Alignment */
.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Background & Borders */
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

.border {
    border-width: 1px;
}

.rounded {
    border-radius: .25rem;
}

/* Font Styling */
.sm\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.pl-7 {
    padding-left: 1.75rem;
}
.softglaze-treatment-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.softglaze-treatment-label {
    display: flex;
    align-items: center;
    font-size: .875rem;
    line-height: 1.25rem;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgb(226, 232, 240);
    background-color: rgb(255, 255, 255);
    border-radius: .25rem;
    transition: .15s ease-in-out;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    cursor: pointer;
}

/* Multi-Select Checkboxes */
.softglaze-treatment-label input {
    position: relative;
    opacity: 1;
    cursor: pointer;
    margin-right: 8px;
}

/* Apply Filter Button */
.softglaze-filter-btn {
    display: block;
    width: 20%;
    padding: 10px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1.25rem; /* mt-5 */
    font-weight: 600; /* font-semibold */
    font-size: .75rem; /* text-xs */
    line-height: 1rem;
}

.softglaze-filter-btn:hover {
    background: #b5003c;
}

.softglaze-type-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 3 columns */
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.softglaze-type-label {
    display: flex;
    align-items: center;
    font-size: .875rem;
    line-height: 1.25rem;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgb(226, 232, 240);
    background-color: rgb(255, 255, 255);
    border-radius: .25rem;
    transition: .15s ease-in-out;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    cursor: pointer;
}

/* Multi-Select Checkboxes */
.softglaze-type-label input {
    position: relative;
    opacity: 1;
    cursor: pointer;
    margin-right: 8px;
}

/* Apply Filter Button */
.softglaze-filter-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
    font-size: .75rem;
    line-height: 1rem;
}

.softglaze-filter-btn:hover {
    background: #005bb5;
}

.softglaze-functie-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Style for Functie Labels */
.softglaze-functie-label {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: .875rem;
    line-height: 1.25rem;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgb(226, 232, 240);
    background-color: rgb(255, 255, 255);
    border-radius: .25rem;
    transition: .15s ease-in-out;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    cursor: pointer;
}

/* Multi-Select Checkboxes */
.softglaze-functie-label input {
    position: relative;
    opacity: 1;
    cursor: pointer;
    margin-right: 8px;
}

/* Apply Filter Button */
.softglaze-filter-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
    font-size: .75rem;
    line-height: 1rem;
}

.softglaze-filter-btn:hover {
    background: #005bb5;
}

.softglaze-days-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Style for Days Labels */
.softglaze-days-label {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: .875rem;
    line-height: 1.25rem;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgb(226, 232, 240);
    background-color: rgb(255, 255, 255);
    border-radius: .25rem;
    transition: .15s ease-in-out;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    cursor: pointer;
}

/* Multi-Select Checkboxes */
.softglaze-days-label input {
    position: relative;
    opacity: 1;
    cursor: pointer;
    margin-right: 8px;
}

/* Apply Filter Button */
.softglaze-filter-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
    font-size: .75rem;
    line-height: 1rem;
}

.softglaze-filter-btn:hover {
    background: #005bb5;
}
