.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
	z-index: 9999;
}

.fade-out-animation {
    opacity: 0.5;
    visibility: hidden;
}

.fade-in-animation {
    opacity: 0.5;
}

#entityList li:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.json-textarea {
    font-family: monospace; /* Fuente monoespaciada para JSON */
    white-space: pre; /* Mantener el formato de los espacios en blanco */
}

.code-container {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    font-family: monospace;
    white-space: pre;
}

.position-info {
    width: 5ch; /* Aproximadamente 4 caracteres */
    margin-right: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.absolute-corner-element{
	position: absolute;
	top : 2%;
	right: 1%;

}

.absolute-bottom-right-corner-element{
	position: absolute;
	bottom : 2%;
	right: 1%;

}

.hidden {
  display: none;
}

.btn.active {
    background-color: #007bff;
    border-color: #007bff;
}
.filter-card {
    background-color: #f8f9fa; /* Color de fondo suave */
    border: 1px solid #dee2e6; /* Borde suave */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra suave */
    padding: 15px; /* Espaciado interno */
}
.filter-card-header {
    cursor: pointer; /* Indicar que es clickeable */
}


/* Logo positioning and size */
.navbar-brand .logo-img {
    height: 50px; /* Adjust logo size */
}

/* Margin to the right of the logo to separate from other menu items */
.logo-margin {
    margin-left: 20px;
}

/* Ensure the Options button is aligned to the right */
.navbar-nav.ms-auto {
    margin-left: auto;
}

.navbar-nav .nav-link {
    font-size: 16px !important;
}


/* For the dropdown menu, align it to the end of the Options button */
.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .logo-margin {
        margin-left: 0;
    }
}
