@font-face {
    font-family: 'HarveySansDiatype-Regular';
    src: url('/static/fonts/HarveySansDiatype-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarveySerif-Regular';
    src: url('/static/fonts/HarveySerif-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarveySansDiatype-RegularItalic';
    src: url('/static/fonts/HarveySansDiatype-RegularItalic.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'HarveySansDiatype-Regular', sans-serif;
    margin: 40px;
    background-color: #FAFAF9;
}

h1 {
    font-family: 'HarveySerif-Regular', serif;
    color: #0F0E0D;
    text-align: center;
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 0px;
}

p {
    text-align: center;
    color: #706D66;
}

h2 {
    color: #0F0E0D;
    font-family: 'HarveySerif-Regular', serif;
}

h3 {
    color: #0F0E0D;
    font-family: 'HarveySansDiatype-Regular', sans-serif;
    margin: 10px 0;
    padding: 0;
}

section { margin-top: 30px; }

.endpoint-list {
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    background: #F2F1F0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.endpoint-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #FAFAF9;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.endpoint-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.endpoint-item div:not(:first-child) {
    color: #706D66;
    font-size: 14px;
    font-family: 'HarveySansDiatype-RegularItalic', sans-serif;
}

.endpoint-text {
    margin: 0 8px;
}

.status {
    margin-left: auto;
    margin-right: 8px;
    font-size: 20px;
    font-weight: bold;
}

.success { color: #22c55e; }
.failure { color: #ef4444; }
.pending { color: #6b7280; }

.test-button {
    padding: 10px 20px;
    background: #0F0E0D;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 48px auto;
    display: block;
    width: fit-content;
    font-family: 'HarveySansDiatype-Regular', sans-serif;
}

.test-button:hover {
    background: #33312C;
}

.test-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}
