.test-api-form {
    max-width: 700px;
    margin: auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.test-api-form label {
    font-weight: 600;
    display: block;
    margin-top: 1rem;
}

.test-api-form input,
.test-api-form select,
.test-api-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.test-api-form button {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

#result {
    max-width: 800px;
    margin-top: 2rem;
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    white-space: pre-wrap;
    font-family: monospace;
    max-height: 400px;
    overflow-y: auto;
}

#test-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#test-form input, #test-form select, #test-form button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#test-form button {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

#test-form button:hover {
    background-color: #0056b3;
}

#result {
    white-space: pre-wrap;
    background-color: #f8f9fa;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    font-family: monospace;
    border: 1px solid #ddd;
    max-width: 800px;
    overflow-x: auto;
}

