#global-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #3498db;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

body {
    font-family: Arial, sans-serif; /* Fallback na systemową czcionkę */
}

#crumbs {
    font-family: 'Raleway', Arial, sans-serif;
}

#crumbs {
    color: #00886F !important;
}

.eu-desktop {
  max-width: 250px; 
  height: auto;
}
.eu-mobile {
  max-height: 150px;
  width: auto;
}
.header-eu-mobile {
  text-align: center; 
  padding-top: 20px;
}