legenda {
  background-color: black;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

/* Tytuły sekcji */
ul#pecet__legenda > li h2 {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 6px 0;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Kontener główny */
ul#pecet__legenda {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    align-items: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
}

/* Panele z tłem */
ul#pecet__legenda > li.pecet__legenda__administracja {
    background: rgba(255, 255, 255, 0.09) url(https://i.imgur.com/l5F66ZN.png) left bottom no-repeat;
    background-size: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

ul#pecet__legenda > li.pecet__legenda__forumowe {
    background: rgba(255, 255, 255, 0.09) url(https://i.imgur.com/rPH9f46.png) left bottom no-repeat;
    background-size: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

ul#pecet__legenda > li.pecet__legenda__serwerowe {
    background: rgba(255, 255, 255, 0.09) url(https://i.imgur.com/hLGoSAG.png) left bottom no-repeat;
    background-size: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

ul#pecet__legenda > li.pecet__legenda__premium {
    background: rgba(255, 255, 255, 0.09) url(https://i.imgur.com/7CJvsYE.png) left bottom no-repeat;
    background-size: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

ul#pecet__legenda > li.pecet__legenda__podstawowe {
    background: rgba(255, 255, 255, 0.09) url(https://i.imgur.com/o0EOKee.png) left bottom no-repeat;
    background-size: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

/* Wszystkie panele */
ul#pecet__legenda > li {
    border-radius: 12px;
    display: block;
    width: calc(18% - 4px);
    max-width: 350px;
    padding: 12px 8px;
    margin: 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    text-align: center; /* Wyśrodkowanie tekstu w kontenerze */
}

/* Efekt hover */
ul#pecet__legenda > li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Lista grup */
ul#pecet__legenda > li ul.pecet__legenda__groups {
    display: block;
    width: 100%;
    position: relative;
    margin-top: 6px;
    list-style: none;
    padding: 0;
    text-align: center; /* Wyśrodkowanie listy */
}

/* Linki w grupach */
ul#pecet__legenda > li ul.pecet__legenda__groups > li a {
    margin: 0;
    line-height: 1.2;
    text-decoration: none;
    display: block;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    color: #fff;
    font-size: 11px;
    text-align: center; /* Wyśrodkowanie tekstu w linkach */
    justify-content: center; /* Wyśrodkowanie ikon i tekstu razem */
}

/* Elementy listy grup */
ul#pecet__legenda > li ul.pecet__legenda__groups > li {
    width: 100%;
    margin: 3px 0;
    position: relative;
    text-align: center; /* Wyśrodkowanie elementów */
    display: flex;
    justify-content: center; /* Wyśrodkowanie ikon i tekstu */
    align-items: center; /* Wyśrodkowanie pionowe */
}

/* Efekt hover na linkach */
ul#pecet__legenda > li ul.pecet__legenda__groups > li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}