.code-block {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}
.method-get {
    @apply bg-green-100 text-green-800 px-2 py-1 rounded text-sm font-medium;
}
.method-post {
    @apply bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm font-medium;
}
.method-put {
    @apply bg-yellow-100 text-yellow-800 px-2 py-1 rounded text-sm font-medium;
}
.method-delete {
    @apply bg-red-100 text-red-800 px-2 py-1 rounded text-sm font-medium;
}
