.bg-blue-zol{background-color: #3c7faf;}
/* style dla nakładki ładowania */
#obiekt-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: opacity 0.3s ease, visibility 0.3s ease; 
  }
  #obiekt-page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .loader-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .loader-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #007bff;
    animation: obiekt-loader-pulse 1.4s ease-in-out infinite both;
  }
  .loader-dots span:nth-child(1) { animation-delay: 0s; }
  .loader-dots span:nth-child(2) { animation-delay: 0.2s; }
  .loader-dots span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes obiekt-loader-pulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
  }
  /* style dla tablicy LM */
#custom-tabs-one-lm-tab:not(.active) {
  background: #dc3545 !important;
  color: #fff !important;
  border-color: #dc3545 !important;
}
#custom-tabs-one-lm-tab:not(.active):hover,
#custom-tabs-one-lm-tab:not(.active):focus {
  background: #c82333 !important;
  color: #fff !important;
}