body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumbs {
    margin-bottom: 12px;
    font-size: 13px;
    color: #64748b;
}

.breadcrumbs a {
    color: #2196F3;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.header h1 {
    margin: 0 0 10px 0;
    color: #333;
}

.header p {
    color: #666;
    margin: 0;
}

.header-links {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.header-links a {
    text-decoration: none;
    font-size: 13px;
    color: #2196F3;
    background: #eaf5ff;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 600;
}

.header-links a:hover {
    background: #d8edff;
}

.endpoints {
    display: grid;
    gap: 20px;
}

.endpoint-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2196F3;
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.method-badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    background: #2196F3;
    color: white;
}

.endpoint-url {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.endpoint-description {
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

.docs-link {
    margin-top: 30px;
    text-align: center;
}

.docs-link a {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.docs-link a:hover {
    text-decoration: underline;
}
