.container.compare-holder-layout {
     position: relative; 
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.loading-overlay .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #ccc;
    border-top: 3px solid #2b303b;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0px 0px 12px 0px;;
    box-sizing: border-box;
    display: block;
}

.loading-overlay .loading-text {
    font-size: 14px;
    color: #2b303b;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.mina-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mina-loading-overlay .spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #ccc;
  border-top: 3px solid #2b303b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 12px;
}

.mina-loading-overlay .loading-text {
  font-size: 14px;
  color: #333;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-message {
  text-align: center;
  padding: 14px;
  color: #666;
  font-size: 20px;
  font-weight: bold;
}
