/**
 * Nordata Custom CSS
 * Central, update-proof stylesheet for all forum styles.
 */

/* Rangi użytkowników / User rank badge & title on one line, vertically aligned */
.profile-rank,
dd.profile-rank,
.postprofile .profile-rank {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
}

/* Ukryj znak nowej linii wygenerowany domyślnie przez phpBB */
.profile-rank br,
dd.profile-rank br {
    display: none !important;
}

/* Ikona/odznaka rangi: stała szerokość 30px, na początku (przed tekstem) */
.profile-rank img,
dd.profile-rank img {
    order: -1 !important;
    width: 30px !important;
    height: auto !important;
    max-width: 30px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Tekst rangi wyśrodkowany w pionie */
.profile-rank span,
dd.profile-rank span {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
}

/* Centrowanie na widokach mobilnych dla motywów prosilver / elegance */
@media (max-width: 700px) {
    .postprofile .profile-rank,
    dd.profile-rank {
        justify-content: center !important;
    }
}

/* Wyśrodkowanie rangi w motywie Zeina */
.profile-rank.justify-center,
.theme-zeina .profile-rank,
body#phpbb.zeina .profile-rank {
    justify-content: center !important;
}
