
.filter-bar {
    max-width: 100%;
    width: 100%;
    padding: 40px;
    background-color: #FBF7F6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;

        button {     
            font-size: 1rem;
        }
    }

    .filter-form {
        font-family: "DM Sans", Sans-serif;
    }

    .filter__form-fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        grid-auto-rows: auto;
        gap: 25px 50px;
        font-size: 1rem;
    }

    .filter-field {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .filter__price-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
    
    select {
        flex: 1 1 auto;
        color: black;
    }

    .filter__submit {
        height: max-content;
        width: max-content;
        margin: auto;
    }

    label {
        width: 120px;
        flex-shrink: 0;
        letter-spacing: 0.02em;
    }

    h2 {
        margin-top: 0px;
        margin-bottom: 25px;
        font-family: "Italiana", Sans-serif;
    }

    @media screen and (max-width:1024px) {
        .filter__form-fields {
            grid-template-columns: repeat(1, 1fr);
        }
        .filter-field {
            justify-content: center;
        }

        align-items: center !important;

    }

    @media screen and (max-width:767px) {
        padding: 30px;
    }

    @media screen and (max-width:550px) {
        .filter-field {
            flex-direction: column;
            align-items: start;
            gap: 10px;
        }

    }
}


.details-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-family: "DM Sans", Sans-serif;
    font-size: 1rem;
}

.details-table td,
.details-table tr {
  background-color: white !important; 
  padding: 12px 16px;
  border: none;           
  border-bottom: 1px solid #ddd; 
}

.details-table tr:last-child td {
  border-bottom: none;         
}

.e-loop-nothing-found-message__text {
    font-family: "DM Sans", Sans-serif;
}