.ebay-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0;
}

.ebay-item-box {
    border: 1px solid #ddd;
    padding: 16px;
    width: calc(33.33% - 16px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 4px;
}

.ebay-item-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.ebay-item-box h3 {
    font-size: 1.2em;
    margin: 0 0 8px;
}

.ebay-item-box p {
    font-size: 1em;
    color: #333;
}

.ebay-item-button {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.ebay-item-button:hover {
    background-color: #005177;
}
