body {
    font-family: Verdana, Geneva, Tahoma, sans-serif, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #efefef9e !important;
}

.app {
    display: flex;
    padding-top: 30px;
    align-items: flex-start;
}

.search-form {
    width: 18%;
}

.search-panel {
    display: flex;
    justify-content: center;
}

#search-form {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.iframe-container {
    width: 81%;
    padding: 1px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.error {
    color: red;
    font-size: 12px;
    margin-bottom: 5px;
}

.dropdown-menu {
    display: none;
}

.dropdown-menu.show {
    display: block;
}

label {
    font-size: 13px;
    margin: 0 !important;
    opacity: 0.8;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px !important;
    margin-bottom: 10px;

}

.bootstrap-select {
    border: 1px solid lightgrey !important;
    border-radius: 4px;

}

.filter-option {
    font-size: 14px !important;

}

.header {
    width: 100%;
    z-index: 1000;
    padding-left: 35px;
    padding-top: 15px;
}

.header-content {
    display: flex;
    justify-items: flex-start;
    align-items: center;
}

.header-logo {
    width: 5%;
}


.header-text {
    width: 94%;
}

.header img {
    height: 70px;
    margin-right: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;

}

.iframe-error {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    background: #fff;
    padding: 10px;
}


/* Mobile Phones (Portrait & Landscape) */
@media screen and (max-width: 767px) {
    .app {
        display: flex;
        flex-direction: column;
    }

    .search-form {
        width: 100%;
    }

    .search-panel {
        width: 100%;
    }

    #search-form {
        width: 98% !important;
    }

    .app{
        padding-top: 10px;
    }
    .header {
        padding-left: 2px ;
    }

    .header-text {
        display: none;
    }

    .iframe-container {
        width: 100%;
        padding: 10px;
    }

    .input-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .bootstrap-select {
        width: 100% !important;
    }

    .input-group input {
        width: 100% !important;
    }
}

/* Tablets (Portrait & Landscape) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .app {
        display: flex;
        flex-direction: column;
    }

    .search-form {
        width: 100%;
    }

    .search-panel {
        width: 100%;
    }

    #search-form {
        width: 98% !important;
    }

    .header-logo {
        width: 10%;
    }


    .header-text {
        width: 80%;
    }

    .iframe-container {
        width: 100%;
        padding: 10px;
    }

    .input-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .bootstrap-select {
        width: 100% !important;
    }

    .input-group input {
        width: 100% !important;
    }
}