/* === Usunięcie warning na logowaniu bezpośrednim === */
.notecard--warning[data-v-f656e861] {
    display: none !important;
}
}
#body-user .warning, #body-settings .warning {
    display: none;
}
/* === Opcjonalny komunikat w stopce === */
footer::before {
content: "";
color: white;
font-size: 27px;
}
/* === Opcjonalny komunikat nad buttonami logowania === */
#saml-select-user-back-end h1::before {
    content: "";
    display: block;
    font-size: 27px;
    margin-bottom: 25px;
    line-height: 1.2;
    white-space: pre-wrap;
}
/* === Remove footer on public share site === */
#body-public footer {
    display: none;
}
/* === BLOK BUTTON === */
/* === Enforce a column layout and real spacing between items === */
#saml-select-user-back-end {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important; /* przerwa między przyciskami */
    margin-top: 12px !important;
}

/* === Each option as a full-width block, no floats or absolute positioning === */
#saml-select-user-back-end .login-option {
    display: block !important;
    width: 100% !important;
    float: none !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* === Link as full button blok === */
#saml-select-user-back-end .login-option a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    line-height: 1.3 !important;
    overflow: visible !important;
    margin: 0 !important;

    /* Usunięcie linii pod spodem */
    border: none !important;
    border-width: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background-clip: padding-box !important;
}

/* === Bezpośrednie logowanie style */
#saml-select-user-back-end a[href*="direct=1"] {
    font-size: 14px !important;
    background-color: #d1d1d1 !important;
    color: #2b2b2b !important;
    font-weight: 600 !important;
}

/* === Logowanie RON style === */
#saml-select-user-back-end a[href*="user_saml"] {
    font-size: 24px !important;
    padding: 20px 24px !important;
    font-weight: 800 !important;
    background-color: #0078d4 !important;
    color: #ffffff !important;
}

/* === Hover efekt (opcjonalnie) === */
#saml-select-user-back-end a[href*="user_saml"]:hover {
    background-color: #005a9e !important;
}
/* === KONIEC BLOCK BUTTON === */