/* Estilos para botões de informação dos marketplaces */
.marketplace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.marketplace-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.marketplace-info-btn {
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
}

.marketplace-info-btn:hover {
    background: var(--accent-secondary);
    transform: scale(1.1);
}