.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 */
}

.warning-container {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
      padding: 16px;
      margin: 20px;
      border-radius: 8px;
      font-size: 0.95em;
      max-width: 800px;
}

.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;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.filter-card-header {
    cursor: pointer;
}


/* 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;
    }
}

.tooltip-wrapper {
  position: relative;
  display: block;
}

.tooltip-text {
  visibility: hidden;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Timeline styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 40px;
}

.timeline-item:not(.timeline-item-last)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: #dee2e6;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 8px;
}

.timeline-marker-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}