.searchBarWrap {
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;

    .searchBar {
        display: flex;

        align-items: center;
        border: 1px solid #d2dae2;
        padding: 0 15px 0 10px;
        border-radius: 8px;

        .icon {
            height: 100%;
            display: flex;
            align-items: center;

            svg {
                height: 20px;
            }
        }

        input {
            outline: none;
            border: none;
            width: 100%;
            height: 40px;
            padding: 12px 0;
            margin-left: 5px;
            font-family: 'RobotoCondensed-Regular';
            font-size: 14px;
        }
    }

    .filterWrap {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .row {
            width: 100%;
            row-gap: 15px;
            margin: 0;

            @media screen and (max-width: 991px) {
                --bs-gutter-x: 0;

                >div {
                    padding: 0 5px;
                }
            }
        }

        .caseType {
            min-width: fit-content;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            height: 100%;
            flex-direction: column;
            color: #111111;

            .list {
                width: 100%;
            }

            @media screen and (max-width: 991px) {
                flex-direction: column;
                align-items: flex-start;
                height: 70px !important;
            }

            ul {
                list-style: none;
                padding: 0;
                margin: 0;

                li {
                    width: 100%;
                }
            }

            label {
                font-weight: normal;
                margin: 0;
            }

            select {
                display: none;
            }

            .dropdown {
                width: 100% !important;
                height: 100%;
                background-color: #ffff;
                border: 1px solid #d2dae2;

                .current {
                    &.placeholder {
                        color: #9e9e9e;
                    }
                }
            }
        }

        .dateUpload,
        .severityLevel,
        .year {
            display: flex;
            align-items: center;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            height: 100%;
            color: #111111;

            select {
                display: none;
            }

            @media screen and (max-width: 991px) {
                flex-direction: column;
                align-items: flex-start;
                height: 70px;
                width: 100% !important;
            }

            label {
                font-weight: normal;
                margin: 0;
            }

            .dropdown {
                height: 100%;
                width: 100% !important;
                background-color: #ffff;
                border: 1px solid #d2dae2;
                span {
                    white-space: nowrap;
                text-overflow: ellipsis;
                width: 100%!important;
                overflow: hidden;
                display: block;
                }
            }

            .list {
                width: 100%;

                ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                }
            }
        }

        .dateUpload {
            height: 100%;

            @media screen and (max-width: 991px) {
                flex-direction: column;
                align-items: flex-start;
                height: 70px;
            }

            .inputWrap {
                height: 100%;
                width: 100%;
                display: flex;
                border: 1px solid #d2dae2;
                align-items: center;
                border-radius: 8px;
                padding-right: 18px;
                overflow: hidden;

                .calendarIcon {
                    display: flex;
                    align-items: center;
                    margin-left: 8px;
                }

                svg {
                    height: 20px;
                    color: #9e9e9e;
                }

                input {
                    outline: none;
                    height: 100%;
                    border: none;
                    outline: none;
                    min-width: 190px;
                    width: 100%;
                    padding: 0 18px;
                    padding-right: 0;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    font-family: 'RobotoCondensed-Regular';
                    font-size: 14px;
                    &::placeholder {
                        color: #9e9e9e!important;
                    }
                    @media screen and (max-width: 991px) {
                        min-width: 0;

                    }
                }
            }

        }
    }

    .buttonWrap {
        display: flex;
        justify-content: flex-end;
        gap: 10px;

        .resetBtn {
            &:hover {
                a {
                    background-color: #443846;
                    color: #ffff;
                }
            }

            a {
                color: #443846;
                font-weight: 500;
                padding: 10px 20px;
                display: block;
                border-radius: 10px;
                border: 1px solid #443846;

                background-color: transparent;
                transition: all .1s;
                font-family: 'RobotoCondensed-Medium';
            }
        }

        .searchBtn {

            a {
                color: #fff;
                font-weight: 500;
                padding: 10px 20px;
                display: block;
                border-radius: 10px;
                border: 1px solid transparent;
                background-color: #443846;

                font-family: 'RobotoCondensed-Medium';
            }
        }
    }
}

.dropdown {
    .current {
        &.placeholder {
            color: #9e9e9e;
        }
    }
}