
.api-endpoint {
    background: #2d3748;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.method-badge {
    background: #48bb78;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
}

.response-box {
    background: #1a202c;
    color: #68d391;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
    margin-top: 16px;
    display: none;
}

.response-box.show {
    display: block;
}

.info-banner {
    background: #e6f7ff;
    border-left: 4px solid #1890ff;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #003a8c;
}

.curl-box {
    background: #2d3748;
    color: #e2e8f0;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    margin-top: 16px;
    border: 2px solid #4a5568;
}

.curl-box pre {
    color: #68d391;
}

.copy-btn {
    background: rgb(15, 1, 207);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: rgb(34, 18, 253);
}

.copy-btn:active {
    background: rgb(51, 31, 255);
}

.copy-btn.copied {
    background: #fafbfc;
    color: rgb(15, 1, 207);
}

