body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #1a1d21;
}

.navbar {
    background-color: #212529;
}

.card {
    border: 1px solid #2d3238;
    background-color: #212529;
}

.card-header {
    background-color: #2d3238;
    font-weight: 600;
    font-size: 0.9rem;
}

.code-input {
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
}

#preview {
    background-color: #1a1d21;
    padding: 1rem;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
}

/* Method badges */
.method-get { background-color: #198754; }
.method-post { background-color: #0d6efd; }
.method-put { background-color: #fd7e14; }
.method-delete { background-color: #dc3545; }
.method-patch { background-color: #6f42c1; }
.method-options { background-color: #6c757d; }
.method-head { background-color: #20c997; }

.table {
    font-size: 0.9rem;
}

.table code {
    color: #20c997;
    font-size: 0.85rem;
}

.category-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
