/*
Theme Name: Fabrik Child
Author: VamTam
Author URI: https://vamtam.com
Template: fabrik
*/
#filter-form{margin-bottom: 30px;}

/* General Form Styling */
#filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Input and Select Styling */
#filter-form select,
#filter-form input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Desktop View: Full width form */
@media (min-width: 1024px) {
    #filter-form {
        flex-direction: row;
        justify-content: space-between;
    }

    #filter-form select,
    #filter-form input {
        flex: 1; 
        max-width: 23%;
    }

    #filter-form input[type="text"] {
        max-width: 48%; 
    }
}

/* Mobile View: Stack form elements */
@media (max-width: 1023px) {
    #filter-form {
        flex-direction: 
    }

    #filter-form select,
    #filter-form input {
        width: 100%; 
    }
}


/* Ensure the wrapper allows horizontal scrolling */
#filter-results {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Style the table to make it look nice */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
    text-align: left;
    padding: 8px;
    border: 1px solid #ddd;
}

.responsive-table th {
    background-color: #f4f4f4;
}

@media (max-width: 768px) {
    .responsive-table th,
    .responsive-table td {
        font-size: 14px;
    }
}


/*

put your child theme styles here


you don't need any @import rules

*/
