/**
 * eBay Integration - Frontend Styles
 */

/* Documentation Styles */
.ebay-docs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.ebay-docs-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.ebay-docs-header h1 {
    margin: 0 0 10px 0;
    font-size: 36px;
}

.ebay-docs-header p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}

/* Endpoint Cards */
.ebay-endpoint-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.ebay-endpoint-section h2 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* API Test Interface */
.ebay-api-tester {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.ebay-api-tester-input {
    margin-bottom: 15px;
}

.ebay-api-tester-input label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.ebay-api-tester-input input,
.ebay-api-tester-input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.ebay-api-tester-input textarea {
    min-height: 100px;
    resize: vertical;
}

.ebay-test-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ebay-test-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.ebay-test-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.ebay-test-response {
    margin-top: 20px;
    padding: 15px;
    background: #2d3748;
    color: #e2e8f0;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.ebay-test-response.show {
    display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ebay-docs-header h1 {
        font-size: 28px;
    }
    
    .ebay-endpoint-section {
        padding: 15px;
    }
}




