* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f2f1;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    background: #0078d4;
    color: white;
    padding: .9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.1rem;
    font-weight: 600;
}

header a {
    color: white;
    font-size: .85rem;
    text-decoration: none;
    opacity: .85;
}

header a:hover {
    opacity: 1;
    text-decoration: underline;
}

main {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.card {
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 500px;
}

.card h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #323130;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

td {
    padding: .5rem 0;
    border-bottom: 1px solid #edebe9;
    color: #323130;
}

td:first-child {
    font-weight: 600;
    width: 35%;
    color: #605e5c;
}

tr:last-child td {
    border-bottom: none;
}

p  { font-size: .9rem; color: #605e5c; margin-bottom: 1.5rem; }
a.ms-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #0078d4;
    color: white;
    padding: .65rem 1.25rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    transition: background .15s;
}
a.ms-btn:hover { background: #106ebe; }
a.ms-btn svg { width: 20px; height: 20px; flex-shrink: 0; }