/**
 * DHS SSO Session Detector — minimal default styles
 * Override these in your theme if you want a different look.
 */

.dhs-sso-wrap {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.dhs-sso-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background 150ms ease, transform 150ms ease;
}

.dhs-sso-btn-signin {
    background: #1E1F6E;
    color: #fff;
}
.dhs-sso-btn-signin:hover {
    background: #151653;
    color: #fff;
}

.dhs-sso-btn-account {
    background: #FFD24A;
    color: #1c1c1c;
}
.dhs-sso-btn-account:hover {
    background: #FFC61A;
    color: #1c1c1c;
}

/* Image-mode button: link wraps an <img>, no button padding/bg */
.dhs-sso-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}
.dhs-sso-btn-image {
    display: block;
    max-height: 48px;
    width: auto;
    height: auto;
}
