/* body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
} */

.container {
    margin: auto;
    max-width: 400px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.topImg {
    width: 63%;
    height: auto;
    /* margin-bottom: 1.5rem; */
    border-radius: 8px;
}

.upload-box {
    border: 2px dashed #ccc;
    padding: 2rem;
    border-radius: 10px;
    background: #f0f0f0;
    cursor: pointer;
    margin-bottom: 1.5rem;
    position: relative;
}

.upload-box:hover {
    background: #e9ecef;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-box {
    height: 50px;
}

.btnZone {
    display: flex;
    column-gap: 48px;
    justify-content: center;
}

#dlBtn,
#runBtn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#dlBtn {
    background: #00b371;
}

#dlBtn:hover {
    background: green;
}

#runBtn:hover {
    background: #0056b3;
}

#dlBtn:disabled,
#runBtn:disabled {
    background: lightgrey;
    cursor: default;
}

.optionsZone {
    display: flex;
    flex-direction: column;
    row-gap: 9px;
    padding: 18px;
    width: 63%;
    margin: auto;
}

.optionsZoneInput>label {
    font-weight: 700;
}

.optionsZoneInput {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.optInput {
    height: 30px;
    border-radius: 5px;
    width: 108px;
}

#epsgInput {
    width: 100px;
    background-color: rgba(255, 166, 0, 0.373);
    text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#msgArea {
    font-size: large;
    text-overflow: ellipsis;
    overflow: hidden;
}

.loader {
    display: none;
    margin: auto;
    width: 30px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(farthest-side, #169eff 94%, #0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%, #169eff);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
}

@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}


#filterBox {
    margin: 10px 0;
}

.entityListContainer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    width: 351px;
    /* background-color: azure; */
    /* padding: 18px; */
    border-radius: 9px;
    /* border: inset; */
    margin: auto;
    margin-bottom: 18px;
}

.entityListWrapper {
    /* width: 252px; */
    height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 8px;
    /* margin-top: 10px; */
    background-color: #f9f9f9;
}

.filterZone>label {
    display: block;
    margin-bottom: 4px;
}

.filter_radio-options {
    display: flex;
    /* margin-bottom: 18px; */
    column-gap: 18px;
    justify-content: center;
    align-items: center;
}

.entityList {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3px;
}

.entityListWrapperHeader{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 9px;
}

#filterLoader{
    position: absolute;
    top: 57%;
    left: 48%;
}

#ifcSchemaLabel{
    display: none;
    background-color: #00B2D4C9;
    padding: 3px;
    color: white;
    border-radius: 5px;
    /* margin-left: 9px; */
}

.selectedClass{
    width: 100%;
    background-color: antiquewhite;
    text-align: left;
}

.filteringOptions{
    display: flex;
    flex-direction: column;
}

.entityListLabel{
    display: flex;
    background-color: #7fffd438;
    font-weight: 600;
    padding: 3px;
    justify-content: center;
    margin-bottom: 5px;
}

.filterBoxAndIfcVersion{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    column-gap: 9px;
}