html {
    min-height: 100%;
    background: #f4f7fb;
}

body {
    min-height: 100vh;
    margin: 0;
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.public-link-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: #f4f7fb;
    box-sizing: border-box;
}

.public-link-panel {
    width: min(100%, 420px);
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    text-align: center;
    box-sizing: border-box;
}

.public-link-mark {
    width: 64px;
    height: 64px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: #0052ba;
    color: #ffffff;
    font-weight: 700;
}

.public-link-panel h1 {
    margin: 20px 0 12px;
    color: #111827;
    font-size: 2rem;
    line-height: 1.15;
}

.public-link-panel p {
    margin: 0;
    color: #4b5563;
    line-height: 1.55;
}

.public-link-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.public-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    background: #0052ba;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.public-link-button:hover,
.public-link-button:focus {
    color: #ffffff;
    background: #003f8f;
    text-decoration: none;
}

.public-link-button-secondary {
    background: #e5e7eb;
    color: #111827;
}

.public-link-button-secondary:hover,
.public-link-button-secondary:focus {
    background: #d1d5db;
    color: #111827;
}
