

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

.test-api-form label {
    font-weight: 600;
    display: block;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

.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;
}

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

#result {
    max-width: 700px;
    margin: 2em auto;
}

.result-item {
    margin-top: 1rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.result-item:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.ranking-result-header {
    margin-top: 2em;
    margin-bottom: 0;
}

.result-item h3 {
    margin-top: 1em;
    color: #333;
    font-size: 1.25rem;
    font-weight: bold;
}

.result-item p {
    margin-bottom: 0.5rem;
}

.result-item a {
    font-weight: bold;
    color: #007BFF;
}

.result-item a:hover {
    text-decoration: underline;
}

