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

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.subtitle {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.25rem;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

td {
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    vertical-align: middle;
}

td:first-child { width: 70px; }
td:nth-child(2) { width: 280px; }

code {
    font-family: monospace;
    font-size: 0.85rem;
}

.get, .post, .put, .delete {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
}

.get {
    background: #e6f4ea;
    color: #1a7f37;
}
.post {
    background: #ddf4ff;
    color: #0969da;
}

.put {
    background: #fff8c5;
    color: #9a6700;
}

.delete {
    background: #ffebe9;
    color: #cf222e;
}

.tag {
    font-size: 0.7rem;
    color: #cf222e;
    font-weight: 600;
}
